Spread for ASP.NET 11 Product Documentation
RowAxisModel Property
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : RowAxisModel Property
Gets or sets the row information for the sheet.
Syntax
'Declaration
 
Public Property RowAxisModel As ISheetAxisModel
'Usage
 
Dim instance As SheetView
Dim value As ISheetAxisModel
 
instance.RowAxisModel = value
 
value = instance.RowAxisModel
public ISheetAxisModel RowAxisModel {get; set;}

Property Value

ISheetAxisModel object containing the row information for the sheet
Remarks
This property is available at run time only.
Example
This example returns the size of the first row in the RowAxisModel of the SheetView object.
FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView;
int size=sv.RowAxisModel.GetSize(0);
ListBox1.Items.Add(size.ToString());
Dim sv As FarPoint.Web.Spread.SheetView
Dim size As Integer
sv=FpSpread1.ActiveSheetView
size=sv.RowAxisModel.GetSize(0)
ListBox1.Items.Add(size)
See Also

Reference

SheetView Class
SheetView Members
ColumnAxisModel Property

User-Task Documentation

Understanding the Axis Model