Skip to main content

TdxVisibilityType Enum

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

Declaration

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.

vtPartially

vtFully

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

vtFully

vtCentered

The control centers the specified item within the client area.

vtCentered

Remarks

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

See Also