PowerTools InputMan for ASP.NET 8.0J
FunctionKeyButton クラス
メンバ  使用例 

FunctionKeyButtonクラスは、ファンクションキーコントロールに追加されるファンクションキーボタンを定義します。
構文
Public Class FunctionKeyButton 
   Inherits GrapeCity.Web.Input.Core.BaseViewState
public class FunctionKeyButton : GrapeCity.Web.Input.Core.BaseViewState 
使用例
次のサンプルコードは、ファンクションキーコントロールに[F1]キーボタンを追加する方法を示します。
Imports GrapeCity.Web.Input.IMFunctionKey

' FunctionKeyButtonオブジェクトを作成します。
Dim fb1 As New FunctionKeyButton
fb1.BackColor = Color.LightBlue
fb1.ForeColor = Color.Blue
fb1.Font.Bold = True
fb1.FunctionKey = FunctionKeys.F1
fb1.ForbidReservedKeyBehavior = True
fb1.DisplayStyle = DisplayStyle.ImageAndText
fb1.Text = "F1"
fb1.Image = "~/F1Image.bmp"

' 作成したファンクションキーボタンをファンクションキーコントロールに追加します。
GcFunctionKey1.FunctionKeyButtons.Add(fb1)
using GrapeCity.Web.Input.IMFunctionKey;

// FunctionKeyButtonオブジェクトを作成します。
FunctionKeyButton fb1 = new FunctionKeyButton();
fb1.BackColor = Color.LightBlue;
fb1.ForeColor = Color.Blue;
fb1.Font.Bold = true;
fb1.FunctionKey = FunctionKeys.F1;
fb1.ForbidReservedKeyBehavior = true;
fb1.DisplayStyle = DisplayStyle.ImageAndText;
fb1.Text = "F1";
fb1.Image = "~/F1Image.bmp";

// 作成したファンクションキーボタンをファンクションキーコントロールに追加します。
GcFunctionKey1.FunctionKeyButtons.Add(fb1);
継承階層

System.Object
   GrapeCity.Web.Input.Core.NotifyObject
      GrapeCity.Web.Input.Core.BaseViewState
         GrapeCity.Web.Input.IMFunctionKey.FunctionKeyButton

参照

FunctionKeyButton メンバ
GrapeCity.Web.Input.IMFunctionKey 名前空間
GcFunctionKey.FunctionKeyButtons プロパティ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.