Vcl.ComCtrls.TListItem.Indent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Indent: Integer read FIndent write SetIndent default 0;

C++

__property int Indent = {read=FIndent, write=SetIndent, default=0};

Properties

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

Description

Specifies how far the list item is indented.

Use Indent to get or set how far the list item is indented when the listview's ViewStyle property is vsReport. Indent specifies the factor times which the Width property of the SmallImages image list is multiplied to obtain the indent in a report style list view. That is, items are indented by



Indent*ListView.SmallImages.Width.



Indent*ListView->SmallImages->Width



See Also