'Declaration Public Function GetRowLabel( _ ByVal row As Integer, _ ByVal column As Integer _ ) As String
Parameters
- row
- Row index
- column
- Row header column index
Return Value
String containing the text in the specified row header cell
'Declaration Public Function GetRowLabel( _ ByVal row As Integer, _ ByVal column As Integer _ ) As String
FarPoint.Web.Spread.SheetView sv; string s; sv = FpSpread1.ActiveSheetView; s = sv.GetRowLabel(1); Response.Write("The label of the row is " + s);
Dim sv As FarPoint.Web.Spread.SheetView Dim s As String sv = FpSpread1.ActiveSheetView s = sv.GetRowLabel(1) Response.Write("The label of the row is " & s)
SheetView Class
SheetView Members
GetColumnLabel Method
SetRowLabel Method