PowerTools SPREAD for ASP.NET 8.0J
ButtonType 列挙体

Spreadコンポーネントのコマンドバーにボタンをどのように表示するかを指定します。
構文
'Declaration
 
Public Enum ButtonType 
   Inherits System.Enum
public enum ButtonType : System.Enum 
メンバ
メンバ説明
ImageButtonボタンにイメージ(アイコン)を表示します。このボタンは、イメージへのマウス クリックに応答します。
LinkButtonハイパーリンク風のボタン(下線付きテキスト)を表示します。
PushButton標準の2状態のプッシュボタンとテキストを表示します。
解説

これらの設定は、ボタンの表示方法を決定するためにButtonTypeプロパティとともに使用します。

コマンドバーとコマンドバーにあるボタンのカスタマイズの詳細については、「コマンドバーの概要」を参照してください。

この例では、各種のボタンを作成します。
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = new FarPoint.Web.Spread.ButtonCellType("MyCommand", FarPoint.Web.Spread.ButtonType.LinkButton, "http://www.grapecity.com");
FpSpread1.ActiveSheetView.Cells[1, 0].CellType = new FarPoint.Web.Spread.ButtonCellType("MyCommand", FarPoint.Web.Spread.ButtonType.PushButton, "Push");
FpSpread1.ActiveSheetView.Cells[2, 0].CellType = new FarPoint.Web.Spread.ButtonCellType("MyCommand", FarPoint.Web.Spread.ButtonType.ImageButton, "img/edit-e.jpg");
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = New FarPoint.Web.Spread.ButtonCellType("MyCommand", FarPoint.Web.Spread.ButtonType.LinkButton, "http://www.grapecity.com")
FpSpread1.ActiveSheetView.Cells(1, 0).CellType = New FarPoint.Web.Spread.ButtonCellType("MyCommand", FarPoint.Web.Spread.ButtonType.PushButton, "Push")
FpSpread1.ActiveSheetView.Cells(2, 0).CellType = New FarPoint.Web.Spread.ButtonCellType("MyCommand", FarPoint.Web.Spread.ButtonType.ImageButton, "img/edit-e.jpg")
継承階層

System.Object
   System.ValueType
      System.Enum
         FarPoint.Web.Spread.ButtonType

参照

FarPoint.Web.Spread 名前空間
ButtonType プロパティ
ButtonType プロパティ
ButtonType プロパティ

開発者の手引き

コマンド バー ボタンのカスタマイズ

 

 


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