PowerTools SPREAD for ASP.NET 8.0J
Label プロパティ (CreateButtonEventArgs)

コマンドボタンに表示するテキストを取得または設定します。
構文
'Declaration
 
Public Property Label As String
public string Label {get; set;}

プロパティ値

ボタンのテキストを含むString
この例では、コマンドバーの〈更新〉ボタンのラベルを変更します。
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 メンバ
Command プロパティ

 

 


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