 |
property ButtonStyle: TrStringGridEdEditStyle read FButtonStyle write SetButtonStyle default sgbNone; |
 |
property DataType: TrStringGridEdDataType read FDataType write FDataType default sgdText; |
 |
property NumFormat: string read FNumFormat write FNumFormat; |
 |
property MinValue: double read FMinValue write FMinValue; |
 |
property MaxValue: double read FMaxValue write FMaxValue; |
 |
property InvalidDataAction: TrStringGridEdInvalidDataAction read FInvalidDataAction write FInvalidDataAction default sgaHighlight; |
 |
property InvalidDataColor: TColor read FInvalidDataColor write FInvalidDataColor default clRed; |
 |
property OutOfLimitDataColor: TColor read FOutOfLimitDataColor write FOutOfLimitDataColor default clBlack; |
 |
property DropDownRows: integer read FDropDownRows write FDropDownRows default 12; |
 |
property DropDownListCanDelete: Boolean read FDropDownListCanDelete write FDropDownListCanDelete default false; |
 |
property CheckBoxTrueValue: string read FCheckBoxTrueValue write FCheckBoxTrueValue stored CheckBoxTrueValueStored; |
 |
property CheckBoxFalseValue: string read FCheckBoxFalseValue write FCheckBoxFalseValue stored CheckBoxFalseValueStored; |
 |
property CheckBoxDblClick: Boolean read FCheckBoxDblClick write FCheckBoxDblClick default false; |
 |
property CheckListSeparator: string read FCheckListSeparator write FCheckListSeparator stored CheckListSeparatorStored; |
 |
property CheckListCaseSensitive: Boolean read FCheckListCaseSensitive write FCheckListCaseSensitive default false; |
 |
property Alignment: TAlignment read FAlignment write SetAlignment default taLeftJustify; |
 |
property CheckboxAlignment: TAlignment read FCheckboxAlignment write SetCheckboxAlignment default taCenter; |
 |
property AutoAlignment: Boolean read FAutoAlignment write FAutoAlignment default false; |
 |
property Color: TColor read FColor write SetColor default clWindow; |
 |
property Font: TFont read FFont write SetFont stored IsFontStored; |
 |
property ParentFont: Boolean read FParentFont write SetParentFont default true; |
 |
property PickList: TStringList read FPickList write SetPickList; |
 |
property ReadOnly: Boolean read FReadOnly write SetReadOnly default false; |
 |
property Visible: Boolean read FVisible write SetVisible default true; |
 |
property TitleCaption: string read FTitleCaption write SetTitleCaption; |
 |
property TitleFont: TFont read FTitleFont write SetTitleFont stored IsTitleFontStored; |
 |
property TitleParentFont: Boolean read FTitleParentFont write SetTitleParentFont default true; |
 |
property TitleAlignment: TAlignment read FTitleAlignment write SetTitleAlignment default taLeftJustify; |
 |
property WordWrap: Boolean read FWordWrap write FWordWrap default false; |
 |
property TitleWordWrap: Boolean read FTitleWordWrap write FTitleWordWrap default false; |
 |
property FieldName: string read FFieldName write FFieldName; |
 |
property ColumnGroup: integer read FColumnGroup write FColumnGroup default 0; |
 |
property OnDropDownDrawItemEvent: TDrawItemEvent read FDropDownDrawItemEvent write FDropDownDrawItemEvent; |
 |
property OnDropDownMeasureItemEvent: TMeasureItemEvent read FDropDownMeasureItemEvent write FDropDownMeasureItemEvent; |
 |
property OnDropDownGetSize: TCanResizeEvent read FDropDownGetSize write FDropDownGetSize; |