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 |
Property Value
ISheetDataModel object containing the data
Remarks
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.SheetView sv=FpSpread1.ActiveSheetView;
sv.PageSize=20;
sv.RowCount=20;
ListBox1.Items.Add(sv.RowHeaderDataModel.RowCount.ToString()); |
Visual Basic | Copy Code |
---|
Dim sv As FarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
sv.PageSize=20
sv.RowCount=20
ListBox1.Items.Add(sv.RowHeaderDataModel.RowCount) |
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