PowerTools SPREAD for ASP.NET 8.0J
Command プロパティ

実行するコマンドの名前を取得します。
構文
'Declaration
 
Public ReadOnly Property Command As String
public string Command {get;}

プロパティ値

コマンドの名前を含むString
解説

このプロパティから取得可能なボタンコマンドは、以下のとおりです。

コマンド名 ボタン動作
Update 更新
Cancel キャンセル
Clear 切り取り
Copy コピー
Paste 貼り付け
Prev 前のページに戻る
Next 次のページに進む
Print シートの印刷
Add 行を追加
Insert 行を挿入
Delete 行を削除
PrintPDF PDF出力
この例では、コマンドバーの〈更新〉ボタンのラベルを変更します。
private void FpSpread1CreateButton(object sender, FarPoint.Web.Spread.CreateButtonEventArgs e)
{
if(e.Command == "Update")
    {
        e.Label = "ReFresh";
    }
}
Private Sub FpSpread1CreateButton(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.CreateButtonEventArgs) Handles FpSpread1.CreateButton
    If e.Command = "Update" Then
        e.Label = "ReFresh"
    End If
End Sub
参照

CreateButtonEventArgs クラス
CreateButtonEventArgs メンバ
Label プロパティ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.