Spread Silverlight Documentation
UseNegativeBorderColor Property
Example 


GrapeCity.Windows.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
 
<System.ComponentModel.DefaultValueAttribute()>
Public Property UseNegativeBorderColor As System.Boolean
'Usage
 
Dim instance As DataBarRule
Dim value As System.Boolean
 
instance.UseNegativeBorderColor = value
 
value = instance.UseNegativeBorderColor
[System.ComponentModel.DefaultValue()]
public System.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.Windows.SpreadSheet.Data.DataBarRule test = new GrapeCity.Windows.SpreadSheet.Data.DataBarRule();
test.NegativeBorderColor  = Color.FromArgb(150, 10, 100, 99);
test.UseNegativeBorderColor = true;
test.ShowBorder = true;
test.MaximumType = GrapeCity.Windows.SpreadSheet.Data.ScaleValueType.HighestValue;
test.MinimumType = GrapeCity.Windows.SpreadSheet.Data.ScaleValueType.LowestValue;
test.MaximumValue = 20;
test.MinimumValue = 0;
test.UseNegativeFillColor = true;
test.NegativeFillColor = Colors.Purple;
test.Ranges = new GrapeCity.Windows.SpreadSheet.Data.CellRange[] { new GrapeCity.Windows.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.Windows.SpreadSheet.Data.DataBarRule()
test.NegativeBorderColor = Color.FromArgb(150, 10, 100, 99)
test.UseNegativeBorderColor = True
test.ShowBorder = True
test.MaximumType = GrapeCity.Windows.SpreadSheet.Data.ScaleValueType.HighestValue
test.MinimumType = GrapeCity.Windows.SpreadSheet.Data.ScaleValueType.LowestValue
test.MaximumValue = 20
test.MinimumValue = 0
test.UseNegativeFillColor = True
test.NegativeFillColor = Colors.Purple
test.Ranges = New GrapeCity.Windows.SpreadSheet.Data.CellRange() {New GrapeCity.Windows.SpreadSheet.Data.CellRange(0, 0, 5, 1)}
GcSpreadSheet1.Sheets(0).ConditionalFormats.AddRule(test)
test.Ranges = New GrapeCity.Windows.SpreadSheet.Data.CellRange() {New GrapeCity.Windows.SpreadSheet.Data.CellRange(0, 0, 5, 1)}
GcSpreadSheet1.Sheets(0).ConditionalFormats.AddRule(test)
See Also

Reference

DataBarRule Class
DataBarRule Members