Show / Hide Table of Contents

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 Source

ColumnClickEventArgs(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 Source

Buttons

Gets the state of the mouse buttons.

Declaration
public MouseButtons Buttons { get; }
Property Value
Type Description
System.Windows.Forms.MouseButtons
| Improve this Doc View Source

Column

Gets the ImageListViewColumnHeader that is the target of the event.

Declaration
public ImageListView.ImageListViewColumnHeader Column { get; }
Property Value
Type Description
ImageListView.ImageListViewColumnHeader
| Improve this Doc View Source

Location

Gets the coordinates of the cursor.

Declaration
public Point Location { get; }
Property Value
Type Description
System.Drawing.Point
| Improve this Doc View Source

X

Gets the x-coordinates of the cursor.

Declaration
public int X { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Y

Gets the y-coordinates of the cursor.

Declaration
public int Y { get; }
Property Value
Type Description
System.Int32
Back to top Copyright © 2018 Özgür Özçıtak