windowsforms-devexpress-dot-xtragrid-dot-views-dot-layout-dot-viewinfo-fd8b446b.md
Lists values identifying visual elements in a LayoutView View.
Namespace : DevExpress.XtraGrid.Views.Layout.ViewInfo
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
public enum LayoutViewHitTest
Public Enum LayoutViewHitTest
| Name | Description |
|---|---|
None |
The test point is outside a View.
|
| Bounds |
The test point belongs to a View’s border or scroll bar.
|
| ClientArea |
This member supports the internal infrastructure and is not intended to be used directly from your code.
|
| HeaderArea |
The test point belongs to a View’s header panel.
|
| FooterArea |
This member supports the internal infrastructure and is not intended to be used directly from your code.
|
| CardsArea |
The test point belongs to a View’s empty area not occupied by cards.
|
| ViewCaption |
The test point belongs to a View’s caption.
|
| Card |
The test point belongs to a card‘s client area not occupied by field captions and values.
|
| CardCaption |
The test point belongs to a card’s caption.
|
| CardExpandButton |
The test point belongs to the expand button that resides within the card caption and is used to expand/collapse the card.
|
| Field |
The test point belongs to a card field‘s area not occupied by the field’s caption and value.
|
| FieldCaption |
The test point belongs to a card field’s caption.
|
| FieldValue |
The test point belongs to a card field’s value box.
|
| FieldPopupActionArea |
This member supports the internal infrastructure and is not intended to be used directly from your code.
|
| FieldSortButton |
The test point belongs to the Field Sort Button.
|
| FieldFilterButton |
The test point belongs to a Field Filter Button.
|
| LayoutItem |
The test point belongs to a card layout item (a group, tabbed group, separator, label or empty space item). See LayoutViewHitInfo.LayoutItem to learn more.
|
| SingleModeButton |
The test point belongs to the “One Card” button within the header panel that applies the single card display mode to the View.
|
| RowModeButton |
The test point belongs to the “One Row” button within the header panel that applies the single row display mode to the View.
|
| ColumnModeButton |
The test point belongs to the “One Column” button within the header panel that applies the single column display mode to the View.
|
| MultiRowModeButton |
The test point belongs to the “Multiple Rows” button within the header panel that applies the corresponding display mode to the View.
|
| MultiColumnModeButton |
The test point belongs to the “Multiple Columns” button within the header panel that applies the corresponding display mode to the View.
|
| CarouselModeButton |
The test point belongs to the “Carousel View” button within the header panel that applies the corresponding display mode to the View.
|
| PanButton |
The test point belongs to the pan button within the header panel that invokes the card panning feature.
|
| CustomizeButton |
The test point belongs to the “Customize” button within the header panel.
|
| CloseZoomButton |
The test point belongs to a View’s zoom button.
|
| FilterPanel |
The test point belongs to a View’s filter panel.
|
| FilterPanelCloseButton |
The test point belongs to a filter panel close button.
|
| FilterPanelActiveButton |
The test point belongs to the check box in the filter panel used to enable/disable filtering within a View.
|
| FilterPanelText |
The test point belongs to a string in the filter panel which represents the filter criteria applied to a View.
|
| FilterPanelMRUButton |
The test point belongs to a button in the filter panel used to display a dropdown window with a list of the most recently used filter criteria.
|
| FilterPanelCustomizeButton |
The test point belongs to a filter panel customize button.
|
| MasterTabPageHeader |
The test point belongs to the View’s master-detail tab.
|
The following properties accept/return LayoutViewHitTest values:
LayoutViewHitTest enumeration values are returned by the LayoutViewHitInfo.HitTest property of a LayoutViewHitInfo object. LayoutViewHitInfo objects can be created by calling a Layout View’s LayoutView.CalcHitInfo method.
See Hit Information to learn more.
See Also