Show / Hide Table of Contents

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 Source

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

Column

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
| Improve this Doc View Source

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
Back to top Copyright © 2018 Özgür Özçıtak