DIAdem Help

Property: Text for QueryForm <DataFinder>

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

Property: Text for QueryForm <DataFinder>

Specifies the search text of the DataFinder quick search.

Object.Text
ObjectQueryForm <DataFinder>
Object with this property
Object.TextString with read and write access

The following example displays the search text of the quick search:

VBScriptPython

 

Dim oMyDataFinder, oMyQueryForm
Set oMyDataFinder = Navigator.Display.CurrDataFinder
Set oMyQueryForm = oMyDataFinder.QueryForm
If oMyQueryForm.Mode = eQuickQueryForm Then 
  Call MsgBoxDisp (oMyQueryForm.Text)
Else
  Call MsgBoxDisp ("No Quick Search")
End If

Log in to get a better experience