Reflection
Button Property (MouseButtonCombination)
Example 


Gets the mouse button associated with the combination.
Syntax
'Declaration
 
Public ReadOnly Property Button As MouseButtons
'Usage
 
Dim instance As MouseButtonCombination
Dim value As MouseButtons
 
value = instance.Button
public MouseButtons Button {get;}
Example
private System.Windows.Forms.MouseButtons mouseButton;
private MouseButtonCombination mouseCombination;
//Call The Button property
mouseButton = mouseCombination.Button;
See Also