MouseButtons

MouseButtons serializable, flag

System. Windows .Forms (system. windows .forms.dll) enum

This enumeration is used throughout the framework to specify which mouse buttons are currently pressed. It is decorated with the FlagsAttribute , so the values may be combined with one of the logical operators (and you should test with the & operator rather than simple equality, as more than one bit may be set).

 public enum  MouseButtons  {  None = 0x00000000  ,  Left = 0x00100000  ,  Right = 0x00200000  ,  Middle = 0x00400000  ,  XButton1 = 0x00800000  ,  XButton2 = 0x01000000  } 

Hierarchy

System.Object System.ValueType System.Enum(System.IComparabl, System.IFormattable , System.IConvertible) MouseButtons

Returned By

Control.MouseButtons , ItemDragEventArgs.Button , MouseEventArgs.Button

Passed To

ItemDragEventArgs.ItemDragEventArgs() , MouseEventArgs.MouseEventArgs() , StatusBarPanelClickEventArgs.StatusBarPanelClickEventArgs()



. Net Windows Forms in a Nutshell
.NET Windows Forms in a Nutshell
ISBN: 0596003382
EAN: 2147483647
Year: 2002
Pages: 794

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net