MESCIUS SPREAD for ASP.NET 10.0J
RowHeaderAutoText プロパティ

行ヘッダに英字または数字を表示するか、それとも空白であるかを表す値を取得または設定します。
構文
'Declaration
 
Public Property RowHeaderAutoText As HeaderAutoText
public HeaderAutoText RowHeaderAutoText {get; set;}

プロパティ値

表示する自動テキストを設定するHeaderAutoText設定
解説
このプロパティは実行時のみ使用できます。
次のサンプルコードは、行ヘッダに数値が表示されるように設定します。
protected void Page_Load(object  sender, System.EventArgs e)
{
    FarPoint.Web.Spread.SheetView sv;
    sv = FpSpread1.ActiveSheetView;
    sv.RowHeaderAutoText = FarPoint.Web.Spread.HeaderAutoText.Blank;
    if(IsPostBack)
    {
        sv.RowHeaderAutoText = FarPoint.Web.Spread.HeaderAutoText.Numbers;
    }
}
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Dim sv As FarPoint.Web.Spread.SheetView
    sv = FpSpread1.ActiveSheetView
    sv.RowHeaderAutoText = FarPoint.Web.Spread.HeaderAutoText.Blank
    If IsPostBack Then
        sv.RowHeaderAutoText = FarPoint.Web.Spread.HeaderAutoText.Numbers
    End If
End Sub
参照

SheetView クラス
SheetView メンバ
RowHeader.AutoText プロパティ

開発者の手引き

ヘッダ

 

 


© MESCIUS inc. All rights reserved.