Gets or sets the row header column width.
Syntax
Visual Basic (Declaration) | |
---|
Public Property Width As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As RowHeader
Dim value As Integer
instance.Width = value
value = instance.Width |
C# | |
---|
public int Width {get; set;} |
Property Value
Integer number of pixels in the width of the columns in this row header
Example
This example sets the width of the columns in the row header to smaller than the default value.
C# | Copy Code |
---|
FarPoint.Web.Spread.RowHeader rhdr;
rhdr = FpSpread1.ActiveSheetView.RowHeader;
rhdr.ColumnCount = 3;
rhdr.Width = 80; |
Visual Basic | Copy Code |
---|
Dim rhdr As FarPoint.Web.Spread.RowHeader
rhdr = FpSpread1.ActiveSheetView.RowHeader
rhdr.ColumnCount = 3
rhdr.Width = 80 |
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