Class TrDBStringGridEdMultiRow
Unit
rDBStringGridEd
Declaration
type TrDBStringGridEdMultiRow = class(TCollectionItem)
Description
collection item containing all multirows properties
Hierarchy
- TCollectionItem
- TrDBStringGridEdMultiRow
Overview
Methods
Properties
|
property MultiRowType: TMultiRowType read FMultiRowType write SetMultiRowType default mrtAuto; |
|
property Alignment: TAlignment read FAlignment write SetAlignment default taLeftJustify; |
|
property Color: TColor read FColor write SetColor default clNone; |
|
property Font: TFont read FFont write SetFont stored IsFontStored; |
|
property ParentFont: boolean read FParentFont write SetParentFont default true; |
|
property CustomDraw: boolean read FCustomDraw write FCustomDraw default false; |
|
property RowHeightMin: integer read FRowHeightMin write SetRowHeightMin default 0; |
|
property RowHeightMax: integer read FRowHeightMax write SetRowHeightMax default 0; |
|
property RowHeightFreeSpace: integer read FRowHeightFreeSpace write SetRowHeightFreeSpace default 0; |
|
property WordWrap: boolean read FWordWrap write SetWordWrap default false; |
|
property ShowFixed: boolean read FShowFixed write SetShowFixed default false; |
|
property ReadOnly: boolean read FReadOnly write SetReadOnly default false; |
|
property FieldName: string read FFieldName write SetFieldName; |
|
property TextMask: TStrings read FTextMask write SetTextMask; |
|
property FixedColTextMask: TStrings read FFixedColTextMask write SetFixedColTextMask; |
|
property Tag: integer read FTag write FTag default 0; |
Description
Methods
|
procedure Assign(Source: TPersistent); override; |
|
|
procedure RestoreDefaults; |
restore default properties of the multirow
|
Properties
|
property MultiRowType: TMultiRowType read FMultiRowType write SetMultiRowType default mrtAuto; |
defined type of multirow content
|
|
property Alignment: TAlignment read FAlignment write SetAlignment default taLeftJustify; |
define alignment of data in the multirow datacell
|
|
property Color: TColor read FColor write SetColor default clNone; |
define background color of the multirow datacell
|
|
property Font: TFont read FFont write SetFont stored IsFontStored; |
define font for the multirow datacell
|
|
property ParentFont: boolean read FParentFont write SetParentFont default true; |
define usage of parent font for the multirow datacell
|
|
property CustomDraw: boolean read FCustomDraw write FCustomDraw default false; |
define whether the multirow datacell is drawn by custom code in OnDrawCell event
|
|
property RowHeightMin: integer read FRowHeightMin write SetRowHeightMin default 0; |
define minimal row height
|
|
property RowHeightMax: integer read FRowHeightMax write SetRowHeightMax default 0; |
define maximal row height
|
|
property RowHeightFreeSpace: integer read FRowHeightFreeSpace write SetRowHeightFreeSpace default 0; |
define additional row height as free space
|
|
property WordWrap: boolean read FWordWrap write SetWordWrap default false; |
define whether long string should be wraped in teh multirow datacell
|
|
property ShowFixed: boolean read FShowFixed write SetShowFixed default false; |
define whether the multirow datacell is shown as fixed
|
|
property ReadOnly: boolean read FReadOnly write SetReadOnly default false; |
define that multirow datacell cannot be modified
|
|
property FieldName: string read FFieldName write SetFieldName; |
define FieldName as content for the multirow datacell
|
|
property TextMask: TStrings read FTextMask write SetTextMask; |
define Text mask as content for the multirow datacell, tags <<FieldName>> can be used to insert dataset value
|
|
property FixedColTextMask: TStrings read FFixedColTextMask write SetFixedColTextMask; |
define Text mask as content for the multirow fixedcell, tags <<FieldName>> can be used to insert dataset value
|
|
property Tag: integer read FTag write FTag default 0; |
tag property for any custom value
|
Generated by PasDoc 0.15.0.
|