Reflection .NET API
Attachmate.Reflection.Emulation.IbmHosts Assembly / Attachmate.Reflection.Emulation.IbmHosts Namespace / MouseButtonCombination Class / ToString Method
Example


In This Topic
ToString Method (MouseButtonCombination)
In This Topic
Returns a string that represents the current object.
Syntax
'Declaration
 
Public Overrides Function ToString() As String
 
'Usage
 
Dim instance As MouseButtonCombination
Dim value As String
 
value = instance.ToString()

Return Value

A string that represents the current object.
Example
private MouseButtonCombination mouseCombination;
            
string strMouseCombination = mouseCombination.ToString();
Console.Writeline(strMouseCombination);
See Also