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

コマンドボタンを使用できないかどうかを取得します。
構文
'Declaration
 
Public ReadOnly Property Disabled As Boolean
public bool Disabled {get;}

プロパティ値

Boolean:ボタンが無効な場合はTrue、それ以外の場合はFalse
解説
このプロパティを使用し、ボタンが使用できない場合にTrueを返します。
この例では、〈更新〉ボタンが無効かどうかを返します。
private void FpSpread1CreateButton(object sender, FarPoint.Web.Spread.CreateButtonEventArgs e)
{
bool b;
    if(e.Command == "Update")
    {
        b = e.Disabled;
        TextBox1.Text = b.ToString();
    }
}
Private Sub FpSpread1CreateButton(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.CreateButtonEventArgs) Handles FpSpread1.CreateButton
    Dim b As Boolean
    If e.Command = "Update" Then
        b = e.Disabled
        TextBox1.Text = b.ToString()
    End If
End Sub
参照

CreateButtonEventArgs クラス
CreateButtonEventArgs メンバ

 

 


© MESCIUS inc. All rights reserved.