Class ColumnClickEventArgs
Represents the event arguments for column click related events.
Inheritance
System.Object
System.EventArgs
ColumnClickEventArgs
Inherited Members
System.EventArgs.Empty
Namespace: Manina.Windows.Forms
Assembly: ImageListView.dll
Syntax
[Serializable]
[ComVisible(true)]
public class ColumnClickEventArgs : EventArgs
Constructors
| Improve this Doc View SourceColumnClickEventArgs(ImageListView.ImageListViewColumnHeader, Point, MouseButtons)
Initializes a new instance of the ColumnClickEventArgs class.
Declaration
public ColumnClickEventArgs(ImageListView.ImageListViewColumnHeader column, Point location, MouseButtons buttons)
Parameters
Type | Name | Description |
---|---|---|
ImageListView.ImageListViewColumnHeader | column | The column that is the target of this event. |
System.Drawing.Point | location | The location of the mouse. |
System.Windows.Forms.MouseButtons | buttons | One of the System.Windows.Forms.MouseButtons values indicating which mouse button was pressed. |
Properties
| Improve this Doc View SourceButtons
Gets the state of the mouse buttons.
Declaration
public MouseButtons Buttons { get; }
Property Value
Type | Description |
---|---|
System.Windows.Forms.MouseButtons |
Column
Gets the ImageListViewColumnHeader that is the target of the event.
Declaration
public ImageListView.ImageListViewColumnHeader Column { get; }
Property Value
Type | Description |
---|---|
ImageListView.ImageListViewColumnHeader |
Location
Gets the coordinates of the cursor.
Declaration
public Point Location { get; }
Property Value
Type | Description |
---|---|
System.Drawing.Point |
X
Gets the x-coordinates of the cursor.
Declaration
public int X { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Y
Gets the y-coordinates of the cursor.
Declaration
public int Y { get; }
Property Value
Type | Description |
---|---|
System.Int32 |