Vcl.ExtCtrls.TSizeStyle
Delphi
TSizeStyle = (ssAbsolute, ssPercent, ssAuto);
C++
enum DECLSPEC_DENUM TSizeStyle : unsigned char { ssAbsolute, ssPercent, ssAuto };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | Vcl.ExtCtrls.pas Vcl.ExtCtrls.hpp |
Vcl.ExtCtrls | Vcl.ExtCtrls |
Description
Set of sizing styles specifying the manner in which column size or row size is specified.
TSizeStyle is a set of sizing styles specifying the manner in which column size or row size is specified for a TCellItem.
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. |