Skip to main content
Version: 3.5

ColumnClickEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the ColumnClick event.

public class ColumnClickEventArgs : EventArgs

Constructors

Instance memberColumnClickEventArgs(column)

Initializes a new instance of the ColumnClickEventArgs class.

NameTypeDescription
columnInt32The zero-based index of the column that is clicked.

Instance memberColumnClickEventArgs(column, button, clicks)

Initializes a new instance of the ColumnClickEventArgs class.

NameTypeDescription
columnInt32The zero-based index of the column that is clicked.
buttonMouseButtonsOne of the MouseButtons values that indicate which mouse button was pressed.
clicksInt32The number of times a mouse button was pressed.

Properties

Instance memberButton

MouseButtons: Returns which mouse button was pressed.

Instance memberClicks

Int32: Returns the number of clicks or taps.

Instance memberColumn

Int32: Returns the zero-based index of the column that is clicked.

Used By

NameDescription
ColumnClickEventHandlerRepresents the method that will handle the ColumnClick event of a ListView.