名前空間一覧 > GrapeCity.Web.Input.IMCalculator 名前空間 > ButtonTextCollection クラス : Item プロパティ |
オーバーロード | 解説 |
---|---|
Item(String) | ButtonTextCollectionコレクションの要素を取得します。 |
Item(Int32) | ButtonTextCollectionコレクションの要素を取得します。 |
' ButtonTextCollectionコレクションに項目を追加します。 GcCalculator1.ButtonText.Add("SQRT", "sqrt") ' キーを指定してボタンの表示文字(sqrt)を取得します。 Label1.Text = GcCalculator1.ButtonText.Item("SQRT")
GcCalculator1.ButtonText.Add("SQRT", "sqrt"); // キーを指定してボタンの表示文字(sqrt)を取得します。 label1.Text = GcCalculator1.ButtonText["SQRT"];