Tablet.ToString Method
Tablet.ToString Method |
Returns a string that represents the current Tablet object.
Definition
Visual Basic .NET Overrides Public Function ToString() As String C# public override string ToString(); Managed C++ public: String* ToString();
Return Value
System.String. Returns a string that represents the current Tablet object.
Examples
[C#]
This C# example displays the string representation of the current Tablet object, theTablet, in a TextBox control, theTextBox.
theTextBox.Text = theTablet.ToString();
[VB.NET]
This Microsoft® Visual Basic® .NET example displays the string representation of the current Tablet object, theTablet, in a TextBox control, theTextBox.
theTextBox.Text = theTablet.ToString()