Vcl.ComCtrls.TListItem.MakeVisible

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure MakeVisible(PartialOK: Boolean);

C++

void __fastcall MakeVisible(bool PartialOK);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TListItem

Description

Scrolls the list view, if necessary, to ensure a list item is in view.

Call MakeVisible to ensure that the user can see the list item in the list view. The PartialOK parameter specifies whether the item must be entirely visible. If PartialOK is true, no scrolling occurs if the item is at least partially visible. If PartialOK is false, MakeVisible ensures that the entire list item is visible in the list view.

See Also