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


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
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

RowHeader Class
RowHeader Members

User-Task Documentation

Customizing the Appearance of Headers

 

 


Copyright © GrapeCity, inc. All rights reserved.