ImageEn, unit iexMetaHelpers
TIEMetaListView.HideEditor
TIEMetaListView
.HideEditor
Declaration
procedure HideEditor(SaveChanges: Boolean);
Description
If an item is currently being edited, the editing will be halted.
If SaveChanges is true, the specified text will be effected. If iemoDirectEdit is specified for
Options
, it will also update the relevant data for the
attached control
Note:
◼
To force editing of an item, use
ShowEditor
◼
If save changes is true, the
OnSaveMetaData
and
OnAfterEditMetaData
events will occur
Examples
// Save changes and hide the editor
IEMetaListView1.HideEditor( True );
// Cancel editing
IEMetaListView1.HideEditor( False );
Loading contents...