Spread for ASP.NET 7.0 Product Documentation
RowAxisModel Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : RowAxisModel Property


Glossary Item Box

Gets or sets the row information for the sheet.

Syntax

Visual Basic (Declaration) 
Public Property RowAxisModel As ISheetAxisModel
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As ISheetAxisModel
 
instance.RowAxisModel = value
 
value = instance.RowAxisModel
C# 
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.
C#Copy Code
FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView;
int size=sv.RowAxisModel.GetSize(0);
ListBox1.Items.Add(size.ToString());
Visual BasicCopy 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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.