StylusButton.ToString メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
StylusButtonの文字列形式を作成します。
public:
override System::String ^ ToString();
public override string ToString();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
返品
例
次の例では、 ToString メソッドを示します。
// Get string representation of the StylusButton
textbox1.AppendText("\n" + myStylusButton.ToString() + "\n");
' Get string representation of the StylusButton
textbox1.AppendText(vbCrLf + myStylusButton.ToString() + vbCrLf)