Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxVisibilityType Enum

Enumerates scroll-related options of the control’s behavior when it brings a specific item into view.

#Declaration

Delphi
TdxVisibilityType = (
    vtPartially,
    vtFully,
    vtCentered
);

#Members

Name Description Example
vtPartially

The control moves the specified item into view if the item is not in the client area.

vtFully

The control brings the specified item into view if the item is partially visible or not in the client area.

vtCentered

The control centers the specified item within the client area.

#Remarks

The List View control’s MakeItemVisible procedure references the TdxVisibilityType type.

See Also