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

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

パラメータ

index
解説
Itemプロパティは、ButtonTextCollectionコレクションのインデックスを指定して、該当する電卓ボタンの表示文字を取得します。
使用例
次のサンプルコードは、Itemプロパティの機能を示します。
' ButtonTextCollectionコレクションに項目を追加します。
GcCalculator1.ButtonText.Add("SQRT", "sqrt")

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

// インデックスを指定してボタンの表示文字(sqrt)を取得します。
label1.Text = GcCalculator1.ButtonText[0];
参照

ButtonTextCollection クラス
ButtonTextCollection メンバ
オーバーロード一覧

 

 


© 2005-2015 GrapeCity inc. All rights reserved.