Spread Windows Forms 12.0 Product Documentation
LineColor Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > LineNotify Class : LineColor Property
Gets or sets the color of the underline.
Syntax
'Declaration
 
Public Property LineColor As Color
'Usage
 
Dim instance As LineNotify
Dim value As Color
 
instance.LineColor = value
 
value = instance.LineColor
public Color LineColor {get; set;}

Property Value

A System.Drawing.Color value that represents the underline color. The default is System.Drawing.Color.Red.
Example
Type a value in cell 1,1 to see the validation.
//Type a value equal to or less than 10 to see the red line
FarPoint.Win.Spread.LineNotify linen = new FarPoint.Win.Spread.LineNotify();
linen.LineColor = Color.Red;
linen.DoActionReason = FarPoint.Win.Spread.ValidateReasons.EndEdit;
FarPoint.Win.Spread.CompareCellValidator compare = new FarPoint.Win.Spread.CompareCellValidator();
compare.ComparedOperator = FarPoint.Win.Spread.ValidateComparisonOperator.GreaterThan;
compare.Row = 0;
compare.Column = 0;
compare.Actions.Add(linen);
fpSpread1.Sheets[0].AddValidators(new FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), compare);
fpSpread1.Sheets[0].Cells[0, 0].Value = 10;
'Type a value equal to Or less than 10 to see the red line
Dim linen As New FarPoint.Win.Spread.LineNotify()
linen.LineColor = Color.Red
linen.DoActionReason = FarPoint.Win.Spread.ValidateReasons.EndEdit
Dim compare As New FarPoint.Win.Spread.CompareCellValidator()
compare.ComparedOperator = FarPoint.Win.Spread.ValidateComparisonOperator.GreaterThan
compare.Row = 0
compare.Column = 0
compare.Actions.Add(linen)
FpSpread1.Sheets(0).AddValidators(New FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), compare)
FpSpread1.Sheets(0).Cells(0, 0).Value = 10
See Also

Reference

LineNotify Class
LineNotify Members