Class TFixedColText
Unit
rDBGrid
Declaration
type TFixedColText = class(TPersistent)
Description
define object for setting of text in fixed column for TrDBGrid
Hierarchy
- TPersistent
- TFixedColText
Overview
Properties
|
property FixedColWidth: integer read FFixedColWidth write SetFixedColWidth default IndicatorWidth; |
|
property ShowIndicator: boolean read FShowIndicator write SetShowIndicator default true; |
|
property ShowCheckbox: boolean read FShowCheckbox write SetShowCheckbox default false; |
|
property TitleText: string read FTitleText write SetTitleText; |
|
property TextMask: string read FTextMask write SetTextMask; |
|
property ParentFont: boolean read FParentFont write SetParentFont default true; |
|
property Font: TFont read FFont write SetFont stored IsFontStored; |
|
property TextAlign: TAlignment read FTextAlign write SetTextAlign default taLeftJustify; |
Description
Properties
|
property FixedColWidth: integer read FFixedColWidth write SetFixedColWidth default IndicatorWidth; |
define width of fixed column
|
|
property ShowIndicator: boolean read FShowIndicator write SetShowIndicator default true; |
define showing of indicator image
|
|
property ShowCheckbox: boolean read FShowCheckbox write SetShowCheckbox default false; |
define showing of checkbox in fixed column
|
|
property TitleText: string read FTitleText write SetTitleText; |
define text in title row of fixed col
|
|
property TextMask: string read FTextMask write SetTextMask; |
define text mask in data rows of fixed col, use <<FieldName>> to add any field value
|
|
property ParentFont: boolean read FParentFont write SetParentFont default true; |
define using of parent font instead of defined font
|
|
property Font: TFont read FFont write SetFont stored IsFontStored; |
define font for text in fixed column
|
|
property TextAlign: TAlignment read FTextAlign write SetTextAlign default taLeftJustify; |
define alignment for text in fixed column
|
Generated by PasDoc 0.15.0.
|