'Declaration
Public Function GetRowAutoText( _
ByVal As Integer _
) As String
パラメータ
- row
- 行インデックス
戻り値の型
AutoTextIndexによって指定された行ヘッダセルのテキストを含むString
この例では、指定した行ヘッダに表示される自動テキストを返します。
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)