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