PowerTools InputMan for ASP.NET 8.0J
Item プロパティ (ButtonTextCollection)
使用例 

ButtonTextCollectionコレクションの要素を取得します。
オーバーロード一覧
オーバーロード解説
Item(String)ButtonTextCollectionコレクションの要素を取得します。  
Item(Int32)ButtonTextCollectionコレクションの要素を取得します。  
解説
Itemプロパティは、ButtonTextCollectionコレクションのキー(識別名)を指定して、該当する電卓ボタンの表示文字を取得します。
使用例
次のサンプルコードは、Itemプロパティの機能を示します。
' ButtonTextCollectionコレクションに項目を追加します。
GcCalculator1.ButtonText.Add("SQRT", "sqrt")

' キーを指定してボタンの表示文字(sqrt)を取得します。
Label1.Text = GcCalculator1.ButtonText.Item("SQRT")
GcCalculator1.ButtonText.Add("SQRT", "sqrt");

// キーを指定してボタンの表示文字(sqrt)を取得します。
label1.Text = GcCalculator1.ButtonText["SQRT"];
参照

ButtonTextCollection クラス
ButtonTextCollection メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.