Spread ASP.NET 6.0 Product Documentation
RowHeaderDataModel Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : RowHeaderDataModel Property


Glossary Item Box

Gets or sets the data for the row header.

Syntax

Visual Basic (Declaration) 
Public Property RowHeaderDataModel As ISheetDataModel
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As ISheetDataModel
 
instance.RowHeaderDataModel = value
 
value = instance.RowHeaderDataModel
C# 
public ISheetDataModel RowHeaderDataModel {get; set;}

Property Value

ISheetDataModel object containing the data

Remarks

This property is available at run time only.

To get or set the object for the column header, use the ColumnHeaderDataModel property.

Example

This example uses a SheetView object to return the number of rows in the sheet to a list box.
C#Copy Code
FarPoint.Web.Spread.SheetViewsv=FpSpread1.ActiveSheetView;
sv.PageSize=20;
sv.RowCount=20;
ListBox1.Items.Add(sv.RowHeaderDataModel.RowCount.ToString());
Visual BasicCopy Code
DimsvAsFarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
sv.PageSize=20
sv.RowCount=20
ListBox1.Items.Add(sv.RowHeaderDataModel.RowCount)

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.