ImageEn, unit iexMetaHelpers |
|
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 controlNote:
◼To force editing of an item, use
ShowEditor◼If save changes is true, the
OnSaveMetaData and
OnAfterEditMetaData events will occur
// Save changes and hide the editor
IEMetaListView1.HideEditor( True );
// Cancel editing
IEMetaListView1.HideEditor( False );