EditActions
TDataGridEh.EditActions
property EditActions: TGridEditActionsEh;published
Use this property to set allowed operations with the clipboard, editing, and keyboard navigation.
The EditActions property is of type TGridEditActionsEh and and contains the following subproperties:
EditActions.ConfirmDelete
property ConfirmDelete: Boolean default True;Determines whether a confirmation dialog box should be displayed before an interactive operation to delete a record or records.
EditActions.CopyEnabled
property CopyEnabled: Boolean default True;Copy to clipboard operation is allowed.
EditActions.CutEnabled
property CutEnabled: Boolean default True;The operation "Cut to clipboard" of the clipboard is allowed.
EditActions.DeleteEnabled
property DeleteEnabled: Boolean default True;The operation to delete records or the selected area is allowed.
EditActions.EnterAsTab
property EnterAsTab: Boolean default False;The Enter key acts like Tab, i.e. it moves the focus to the next cell to the left.
EditActions.PasteEnabled
property PasteEnabled: Boolean default True;Paste operation from clipboard is allowed.
EditActions.SelectAllEnabled
property SelectAllEnabled: Boolean default True;The "Select Entire Grid" operation is allowed. Usually, selecting the entire grid is done by pressing Crtl+A.
EditActions.UseTabs
property UseTabs: Boolean default True;Use the Tab key to move to the next cell on the left. If UseTabs = False then the Tab key will move to the next control on the Form.
