DIAdem Help

Method: GetIndexedProperties for QueryForm <DataFinder>

  • Updated2024-09-12
  • 2 minute(s) read

Method: GetIndexedProperties for QueryForm <DataFinder>

Returns all indexed Properties and custom properties of the specified type when searching with a DataFinder on the interface.

Set oIndexedProperties = Object.GetIndexedProperties(Type)
ObjectQueryForm <DataFinder>
Object with this method
TypeString
Specifies whether DIAdem returns the indexed properties of the file (eSearchFile), of the group (eSearchChannelGroup), or of the channel (eSearchChannel).
oIndexedPropertiesIndexedProperties
Returned object

The following example displays the number of indexed properties and custom properties of all the files in the search areas:

VBScriptPython

 

Dim oMyProperties, oMyQueryForm
Set oMyQueryForm = Navigator.Display.CurrDataFinder.QueryForm
Set oMyProperties = oMyQueryForm.GetIndexedProperties(eSearchFile)
Call MsgBoxDisp(oMyProperties.Count)

Log in to get a better experience