Vcl.ComCtrls.TCustomListView.VisibleRowCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property VisibleRowCount: Integer read GetVisibleRowCount;

C++

__property int VisibleRowCount = {read=GetVisibleRowCount, nodefault};

Properties

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

Description

Indicates number of items that can fit vertically in the visible area of a list view.

Read VisibleRowCount to determine the number of items from a single column that can appear in the visible area of a list view when the ViewStyle is either vsList or vsReport. Only fully visible items are counted. If VisibleRowCount is less than the total number of items in a column, use the TopItem property to determine if the list view is scrolled.

See Also