Vcl.ComCtrls.TCustomListView.HideSelection

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property HideSelection: Boolean read FHideSelection write SetHideSelection default True;

C++

__property bool HideSelection = {read=FHideSelection, write=SetHideSelection, default=1};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomListView

Description

Determines whether the list view gives a visual indication of which item is selected when focus shifts to another control.

Set HideSelection to false to provide visual feedback of the selected item in the list even when the list view does not have focus. Set HideSelection to true to show the selection only when the list view has focus. HideSelection does not affect the actual value of the selection, only the visual indication. Always setting HideSelection to false can make forms with many list views look too busy.

See Also