FarPoint.Web.Spread 名前空間 : ButtonType 列挙体 |
'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