Class TOptionsEditors
Unit
rDBGrid
Declaration
type TOptionsEditors = class(TPersistent)
Description
setting for rDBGrid editors, part of TOptionEx2
Hierarchy
- TPersistent
- TOptionsEditors
Overview
Methods
Properties
 |
property BoolGlyphs: boolean read FBoolGlyphs write SetBoolGlyphs default true; |
 |
property BoolOneClickChange: boolean read FBoolOneClickChange write FBoolOneClickChange default false; |
 |
property BoolAutoSave: boolean read FBoolAutoSave write FBoolAutoSave default false; |
 |
property Memo: TOptionsBlobType read FMemo write SetMemo default obtGlyph; |
 |
property Graphic: TOptionsBlobType read FGraphic write SetGraphic default obtGlyph; |
 |
property DateTimePicker: boolean read FDateTimePicker write SetDateTimePicker default true; |
 |
property OnlyPickListValues: boolean read FOnlyPickListValues write FOnlyPickListValues default false; |
 |
property TextAsMemoSize: integer read FTextAsMemoSize write FTextAsMemoSize default 0; |
 |
property NotProcDblClick: boolean read FNotProcDblClick write FNotProcDblClick default false; |
 |
property NotProcMemoDblClick: boolean read FNotProcMemoDblClick write FNotProcMemoDblClick default false; |
 |
property NotProcGraphicDblClick: boolean read FNotProcGraphicDblClick write FNotProcGraphicDblClick default false; |
 |
property AllowPasteMultipleCells: boolean read FAllowPasteMultipleCells write FAllowPasteMultipleCells default false; |
 |
property AllowReadOnlyButton: boolean read FAllowReadOnlyButton write FAllowReadOnlyButton default false; |
 |
property AutoPickListWidth: boolean read FAutoPickListWidth write FAutoPickListWidth default true; |
 |
property BlockInsertByKey: boolean read FBlockInsertByKey write FBlockInsertByKey default false; |
Description
Methods
 |
function ShowMemoGlyph: boolean; |
|
 |
function ShowMemoContent: boolean; |
|
 |
function ShowGraphicGlyph: boolean; |
|
 |
function ShowGraphicContent: boolean; |
|
Properties
 |
property BoolGlyphs: boolean read FBoolGlyphs write SetBoolGlyphs default true; |
show checkbox for boolean fields
|
 |
property BoolOneClickChange: boolean read FBoolOneClickChange write FBoolOneClickChange default false; |
change bool value after simple click
|
 |
property BoolAutoSave: boolean read FBoolAutoSave write FBoolAutoSave default false; |
record is automatically saved after bool update if was in browse mode before change
|
 |
property Memo: TOptionsBlobType read FMemo write SetMemo default obtGlyph; |
cell type for memo fields (none, glyph or content)
|
 |
property Graphic: TOptionsBlobType read FGraphic write SetGraphic default obtGlyph; |
cell type for graphic fields (none, glyph or content)
|
 |
property DateTimePicker: boolean read FDateTimePicker write SetDateTimePicker default true; |
use datetime picker for date field
|
 |
property OnlyPickListValues: boolean read FOnlyPickListValues write FOnlyPickListValues default false; |
limits picklist fields to the list values only
|
 |
property TextAsMemoSize: integer read FTextAsMemoSize write FTextAsMemoSize default 0; |
size of text field to show as memo
|
 |
property NotProcDblClick: boolean read FNotProcDblClick write FNotProcDblClick default false; |
block dbl-click event for all fields
|
 |
property NotProcMemoDblClick: boolean read FNotProcMemoDblClick write FNotProcMemoDblClick default false; |
block dbl-click event for memo fields = do not show memo dialog
|
 |
property NotProcGraphicDblClick: boolean read FNotProcGraphicDblClick write FNotProcGraphicDblClick default false; |
block dbl-click event for graphic fields = do not show graphic dialog
|
 |
property AllowPasteMultipleCells: boolean read FAllowPasteMultipleCells write FAllowPasteMultipleCells default false; |
Ctrl+V paste clipboard as multiple cell/records if possible
|
 |
property AllowReadOnlyButton: boolean read FAllowReadOnlyButton write FAllowReadOnlyButton default false; |
edit button in the cell is enabled also for read-only cells
|
 |
property AutoPickListWidth: boolean read FAutoPickListWidth write FAutoPickListWidth default true; |
width of dropdown picklist is set accroding items length
|
 |
property BlockInsertByKey: boolean read FBlockInsertByKey write FBlockInsertByKey default false; |
block inserting of new record by insert or down key
|
Generated by PasDoc 0.15.0.
|