GrapeCity.Xaml.SpreadSheet.Data
UseNegativeBorderColor Property
Example 


GrapeCity.Xaml.SpreadSheet.Data Namespace > DataBarRule Class : UseNegativeBorderColor Property
Gets or sets a value that indicates whether the negative border color is used to paint the border for the negative value.
Syntax
'Declaration
 
<DefaultValueAttribute()>
Public Property UseNegativeBorderColor As Boolean
'Usage
 
Dim instance As DataBarRule
Dim value As Boolean
 
instance.UseNegativeBorderColor = value
 
value = instance.UseNegativeBorderColor
[DefaultValue()]
public bool UseNegativeBorderColor {get; set;}

Property Value

true if the negative border color is used to paint the border for the negative value; otherwise, false.
Example
This example uses the UseNegativeBorderColor property.
gcSpreadSheet1.Sheets[0].Cells[0, 0].Value = 1;
gcSpreadSheet1.Sheets[0].Cells[1, 0].Value = 10;
gcSpreadSheet1.Sheets[0].Cells[2, 0].Value = 6;
gcSpreadSheet1.Sheets[0].Cells[3, 0].Value = -3; 

GrapeCity.Xaml.SpreadSheet.Data.DataBarRule test = new GrapeCity.Xaml.SpreadSheet.Data.DataBarRule();
test.NegativeBorderColor  = Windows.UI.Colors.Red;
test.UseNegativeBorderColor = true;
test.ShowBorder = true;
test.MaximumType = GrapeCity.Xaml.SpreadSheet.Data.ScaleValueType.HighestValue;
test.MinimumType = GrapeCity.Xaml.SpreadSheet.Data.ScaleValueType.LowestValue;
test.MaximumValue = 20;
test.MinimumValue = 0;
test.UseNegativeFillColor = true;
test.NegativeFillColor = Windows.UI.Colors.Purple;
test.Ranges = new GrapeCity.Xaml.SpreadSheet.Data.CellRange[] { new GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1) };
gcSpreadSheet1.Sheets[0].ConditionalFormats.AddRule(test);  
GcSpreadSheet1.Sheets(0).Cells(0, 0).Value = 1
GcSpreadSheet1.Sheets(0).Cells(1, 0).Value = 10
GcSpreadSheet1.Sheets(0).Cells(2, 0).Value = 6
GcSpreadSheet1.Sheets(0).Cells(3, 0).Value = -3

Dim test As New GrapeCity.Xaml.SpreadSheet.Data.DataBarRule()
test.NegativeBorderColor = Windows.UI.Colors.Red
test.UseNegativeBorderColor = True
test.ShowBorder = True
test.MaximumType = GrapeCity.Xaml.SpreadSheet.Data.ScaleValueType.HighestValue
test.MinimumType = GrapeCity.Xaml.SpreadSheet.Data.ScaleValueType.LowestValue
test.MaximumValue = 20
test.MinimumValue = 0
test.UseNegativeFillColor = True
test.NegativeFillColor = Windows.UI.Colors.Purple
test.Ranges = New GrapeCity.Xaml.SpreadSheet.Data.CellRange() {New GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1)}
GcSpreadSheet1.Sheets(0).ConditionalFormats.AddRule(test)
test.Ranges = New GrapeCity.Xaml.SpreadSheet.Data.CellRange() {New GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1)}
GcSpreadSheet1.Sheets(0).ConditionalFormats.AddRule(test)
See Also

Reference

DataBarRule Class
DataBarRule Members