Gets or sets the color of the header area that does not contain column header or row header cells.
Syntax
Visual Basic (Declaration) | |
---|
Public Property HeaderGrayAreaColor As Color |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim value As Color
instance.HeaderGrayAreaColor = value
value = instance.HeaderGrayAreaColor |
C# | |
---|
public Color HeaderGrayAreaColor {get; set;} |
Property Value
Color object containing the color of the area in the area beyond the headers
Remarks
Example
This example changes the color of the header area that does not contain column header or row header cells in the SheetView object.
C# | Copy Code |
---|
FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView;
sv.HeaderGrayAreaColor=Color.Red; |
Visual Basic | Copy Code |
---|
Dim sv As FarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
sv.HeaderGrayAreaColor=Color.Red |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also