Vcl.FileCtrl.TFileListBox.IntegralHeight

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IntegralHeight: Boolean read FIntegralHeight write SetIntegralHeight default 0;

C++

__property IntegralHeight = {default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.FileCtrl.pas
Vcl.FileCtrl.hpp
Vcl.FileCtrl TFileListBox

Description

Determines whether the list box displays the partial items.

Vcl.FileCtrl.TFileListBox.IntegralHeight inherits from Vcl.StdCtrls.TCustomListBox.IntegralHeight. All content below this line refers to Vcl.StdCtrls.TCustomListBox.IntegralHeight.

Determines whether the list box displays the partial items.

IntegralHeight controls the height of the list box itself.

When IntegralHeight is true, and the Style property is lsOwnerDrawFixed, the list box height will always be a multiple of the ItemHeight property value. In this case, items will never be partially displayed.

If IntegralHeight is false, the list box height can be set to any value, but the last item may not be fully displayed.

If the Style property value of the list box is lbOwnerDrawVariable, setting the IntegralHeight property to true has no effect.

See Also