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 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
 
            
            
See Also