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

ButtonTextCollectionコレクションの要素を取得します。
構文
Public Overloads Shadows ReadOnly Property Item( _
   ByVal key As String _
) As String
public new string Item( 
   string key
) {get;}

パラメータ

key
解説
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.