Spread for ASP.NET 11 Product Documentation
Width Property (RowHeader)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > RowHeader Class : Width Property
Gets or sets the row header column width.
Syntax
'Declaration
 
Public Property Width As Integer
'Usage
 
Dim instance As RowHeader
Dim value As Integer
 
instance.Width = value
 
value = instance.Width
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.
FarPoint.Web.Spread.RowHeader rhdr;
rhdr = FpSpread1.ActiveSheetView.RowHeader;
rhdr.ColumnCount = 3;
rhdr.Width = 80;
Dim rhdr As FarPoint.Web.Spread.RowHeader
rhdr = FpSpread1.ActiveSheetView.RowHeader
rhdr.ColumnCount = 3
rhdr.Width = 80
See Also

Reference

RowHeader Class
RowHeader Members

User-Task Documentation

Customizing the Appearance of Headers