Spread for ASP.NET 8.0 Product Documentation
RowAxisModel Property
Example 


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)
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

Reference

SheetView Class
SheetView Members
ColumnAxisModel Property

User-Task Documentation

Understanding the Axis Model

 

 


Copyright © GrapeCity, inc. All rights reserved.