ColumnClickEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the ColumnClick event.
- C#
- VB.NET
public class ColumnClickEventArgs : EventArgs
Public Class ColumnClickEventArgs
Inherits EventArgs
Constructors
ColumnClickEventArgs(column)
Initializes a new instance of the ColumnClickEventArgs class.
| Name | Type | Description |
|---|---|---|
| column | Int32 | The zero-based index of the column that is clicked. |
ColumnClickEventArgs(column, button, clicks)
Initializes a new instance of the ColumnClickEventArgs class.
| Name | Type | Description |
|---|---|---|
| column | Int32 | The zero-based index of the column that is clicked. |
| button | MouseButtons | One of the MouseButtons values that indicate which mouse button was pressed. |
| clicks | Int32 | The number of times a mouse button was pressed. |
Properties
Button
MouseButtons: Returns which mouse button was pressed.
Clicks
Int32: Returns the number of clicks or taps.
Column
Int32: Returns the zero-based index of the column that is clicked.
Used By
| Name | Description |
|---|---|
| ColumnClickEventHandler | Represents the method that will handle the ColumnClick event of a ListView. |