Parameters
- row
- Row index
Return Value
String containing the text for the row header cell specified by AutoTextIndex
FarPoint.Web.Spread.SheetView sv; string s; sv = e.SheetView; s = sv.GetRowAutoText(1); Response.Write("The text in the header is " + s);
Dim sv As FarPoint.Web.Spread.SheetView Dim s As String sv = FpSpread1.ActiveSheetView s = sv.GetRowAutoText(1) Response.Write("The text in the header is " & s)