Gets or sets the row information for the sheet.
            
            
            
Syntax
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As SheetView
Dim value As ISheetAxisModel
 
instance.RowAxisModel = value
 
value = instance.RowAxisModel  | 
 
            
            
            Property Value
ISheetAxisModel object containing the row information for the sheet
 
            
			
			
            Remarks
            
            
Example
This example returns the size of the first row in the RowAxisModel of the SheetView object.
             
| C# |  Copy Code | 
|---|
FarPoint.Web.Spread.SheetViewsv=FpSpread1.ActiveSheetView;
intsize=sv.RowAxisModel.GetSize(0);
ListBox1.Items.Add(size.ToString());  | 
 
| Visual Basic |  Copy Code | 
|---|
DimsvAsFarPoint.Web.Spread.SheetView
DimsizeAsInteger
sv=FpSpread1.ActiveSheetView
size=sv.RowAxisModel.GetSize(0)
ListBox1.Items.Add(size)  | 
 
 
            
            
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