Returns the meta value for the specified list item.
If this value is set and iemoDirectEdit is specified in Options, the params of the attached control will also be updated.
Note: This method does not check that the specified meta-type supports editing
// Specify a new meta value for the selected item IEMetaListView1.ItemValue[ IEMetaListView1.Selected ] := 'My String';
// Output info on the selected meta item procedure TMainForm.IEMetaListView1SelectItem(Sender: TObject; Item: TListItem; Selected: Boolean); var cap, value, rec: string; metaInfo: TIEMetaRecord; begin if IEMetaListView1.Selected <> nil then begin cap := IEMetaListView1.Selected.Caption; value := IEMetaListView1.ItemValue[ IEMetaListView1.Selected ]; metaInfo := IEMetaListView1.ItemInfo [ IEMetaListView1.Selected ];