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

ボタンを表示するかどうかを取得または設定します。
構文
'Declaration
 
Public Property Visible As Boolean
public bool Visible {get; set;}

プロパティ値

Boolean:ボタンが表示される場合はTrue、表示されないFalse
この例では、コマンドバーのボタンを非表示にします。
private void FpSpread1CreateButton(object sender, FarPoint.Web.Spread.CreateButtonEventArgs e) 
{
    e.Visible = false; 
}
Private Sub FpSpread1CreateButton(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.CreateButtonEventArgs) Handles FpSpread1.CreateButton
    e.Visible = False
End Sub
参照

CreateButtonEventArgs クラス
CreateButtonEventArgs メンバ

 

 


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