Spread ASP.NET 6.0 Product Documentation
RowAxisModel Property
See Also  Example Send Feedback
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.SheetViewsv=FpSpread1.ActiveSheetView;
intsize=sv.RowAxisModel.GetSize(0);
ListBox1.Items.Add(size.ToString());
Visual BasicCopy 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

© 2002-2012 GrapeCity, Inc. All Rights Reserved.