Class ColumnHoverEventArgs
Represents the event arguments for column hover related events.
Inheritance
System.Object
System.EventArgs
ColumnHoverEventArgs
Inherited Members
System.EventArgs.Empty
Namespace: Manina.Windows.Forms
Assembly: ImageListView.dll
Syntax
[Serializable]
[ComVisible(true)]
public class ColumnHoverEventArgs : EventArgs
Constructors
| Improve this Doc View SourceColumnHoverEventArgs(ImageListView.ImageListViewColumnHeader, ImageListView.ImageListViewColumnHeader)
Initializes a new instance of the ColumnHoverEventArgs class.
Declaration
public ColumnHoverEventArgs(ImageListView.ImageListViewColumnHeader column, ImageListView.ImageListViewColumnHeader previousColumn)
Parameters
Type | Name | Description |
---|---|---|
ImageListView.ImageListViewColumnHeader | column | The currently hovered column. |
ImageListView.ImageListViewColumnHeader | previousColumn | The previously hovered column. |
Properties
| Improve this Doc View SourceColumn
Gets the currently hovered ImageListViewColumnHeader. Returns null if there is no hovered column.
Declaration
public ImageListView.ImageListViewColumnHeader Column { get; }
Property Value
Type | Description |
---|---|
ImageListView.ImageListViewColumnHeader |
PreviousColumn
Gets the ImageListViewColumnHeader that was previously hovered. Returns null if there was no previously hovered column.
Declaration
public ImageListView.ImageListViewColumnHeader PreviousColumn { get; }
Property Value
Type | Description |
---|---|
ImageListView.ImageListViewColumnHeader |