Vcl.ExtCtrls.TCellItem.SizeStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SizeStyle: TSizeStyle read FSizeStyle write SetSizeStyle default ssPercent;

C++

__property TSizeStyle SizeStyle = {read=FSizeStyle, write=SetSizeStyle, default=1};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCellItem

Description

Specifies the manner in which column size or row size is specified.

Use the SizeStyle property to specify whether the size of the row or column in a grid is an absolute value, a percentage of the grid size, or generated automatically.

The following styles are available:

Style Description

ssAbsolute

The number specified for the Value property is interpreted as the number of pixels for the row or column.

ssAuto

The number specified for the Value property is ignored, and the row or column is sized automatically.

ssPercent

The number specified for the Value property is interpreted as a percentage of the entire grid panel.