Visual Basic (Declaration) | |
---|---|
Public Property DefaultStyleName As String |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As ColumnHeader Dim value As String instance.DefaultStyleName = value value = instance.DefaultStyleName |
C# | |
---|---|
public string DefaultStyleName {get; set;} |
Property Value
String containing the name of the style for this column headerException | Description |
---|---|
System.ArgumentException | Specified style (NamedStyle object) could not be found in the collection |
When defining and applying a custom style to header cells, be sure to set the text alignment. The default renderer (without any style applied) centers the text; if you apply a style, and do not set the alignment, the text is left-aligned not centered.
This example creates a column header and a style for the spreadsheet. The background color in the style is set to yellow, and is then applied to the column header so all the column headers then have a yellow background.
C# | Copy Code |
---|---|
FarPoint.Web.Spread.ColumnHeader colhdr;
FarPoint.Web.Spread.NamedStyle mnstyle = New FarPoint.Web.Spread.NamedStyle();
mnstyle.Name = "fpstyle";
mnstyle.BackColor = Color.Yellow;
FpSpread1.NamedStyles.Add(mnstyle);
colhdr = FpSpread1.ActiveSheetView.ColumnHeader;
colhdr.DefaultStyleName = mnstyle.Name;
|
Visual Basic | Copy Code |
---|---|
Dim colhdr As FarPoint.Web.Spread.ColumnHeader Dim mnstyle As New FarPoint.Web.Spread.NamedStyle() mnstyle.Name = "fpstyle" mnstyle.BackColor = Color.Yellow FpSpread1.NamedStyles.Add(mnstyle) colhdr = FpSpread1.ActiveSheetView.ColumnHeader colhdr.DefaultStyleName = mnstyle.Name |
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
Reference
ColumnHeader ClassColumnHeader Members
DefaultStyle Property