Vcl.ComCtrls.TListColumn.AutoSize

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AutoSize: Boolean read FAutoSize write SetAutoSize default False;

C++

__property bool AutoSize = {read=FAutoSize, write=SetAutoSize, default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TListColumn

Description

Specifies whether the column width should automatically be adjusted when the width of the TListView changes.

Use AutoSize to specify whether the column width should automatically be adjusted when the width of the TListView changes. All columns with the AutoSize property set to True get resized proportionally when the TListView is resized.

Note: To make a specific column display its entire text, set the Width property to -1. For more information, refer to TListColumn.Width.

See Also