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.SheetView sv=FpSpread1.ActiveSheetView;
int size=sv.RowAxisModel.GetSize(0);
ListBox1.Items.Add(size.ToString()); |
Visual Basic | Copy Code |
---|
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