Gets or sets the number displayed in the first column header.
Syntax
Visual Basic (Declaration) | |
---|
Public Property StartingColumnNumber As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim value As Integer
instance.StartingColumnNumber = value
value = instance.StartingColumnNumber |
C# | |
---|
public int StartingColumnNumber {get; set;} |
Property Value
Integer number of the first column
Remarks
Example
This example sets the starting column and row for a SheetView object.
C# | Copy Code |
---|
FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView;
sv.ColumnCount=9;
sv.PageSize=10;
sv.RowCount=20;
sv.StartingColumnNumber=2;
sv.StartingRowNumber=5; |
Visual Basic | Copy Code |
---|
Dim sv As FarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
sv.ColumnCount=9
sv.PageSize=10
sv.RowCount=20
sv.StartingColumnNumber=2
sv.StartingRowNumber=5 |
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