Show / Hide Table of Contents

Class ImageListView.HitInfo

Represents the details of a mouse hit test.

Inheritance
System.Object
ImageListView.HitInfo
Namespace: Manina.Windows.Forms
Assembly: ImageListView.dll
Syntax
public class HitInfo

Properties

| Improve this Doc View Source

CheckBoxHit

Gets whether an item checkbox is under the hit point.

Declaration
public bool CheckBoxHit { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Column

Gets the index of the column under the hit point.

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

ColumnHit

Gets whether a column is under the hit point.

Declaration
public bool ColumnHit { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

ColumnSeparator

Gets the index of the column separator under the hit point.

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

ColumnSeparatorHit

Gets whether a column separator is under the hit point.

Declaration
public bool ColumnSeparatorHit { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

FileIconHit

Gets whether the file icon is under the hit point.

Declaration
public bool FileIconHit { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Group

Gets the index of the group header under the hit point.

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

InHeaderArea

Gets whether the hit point is inside the column header area.

Declaration
public bool InHeaderArea { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

InItemArea

Gets whether the hit point is inside the item area.

Declaration
public bool InItemArea { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

InPaneArea

Gets whether the hit point is inside the left-pane area.

Declaration
public bool InPaneArea { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

ItemHit

Gets whether an item is under the hit point.

Declaration
public bool ItemHit { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

ItemIndex

Gets the index of the item under the hit point.

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

PaneBorder

Gets whether the hit point is over the pane border.

Declaration
public bool PaneBorder { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

SubItemIndex

Gets the index of the sub item under the hit point. The index returned is the 0-based index of the column as displayed on the screen, considering column visibility and display indices. Returns -1 if the hit point is not over a sub item.

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