DIAdem Help

Method: GetCurrQuery for QueryForm <DataFinder>

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

Method: GetCurrQuery for QueryForm <DataFinder>

Determines the search conditions that the search input area of a DataFinder currently displays.

Set oQuery = Object.GetCurrQuery()
ObjectQueryForm <DataFinder>
Object with this method
oQueryQuery <DataFinder>
Returned object

The following example determines the current search conditions. If the example runs a quick search, the example displays the search text:

VBScriptPython

 

Dim oMyQuery
Set oMyQuery = Navigator.Display.CurrDataFinder.QueryForm.GetCurrQuery
If (oMyQuery.IsKindOf(eTextQuery)) Then
   Call MsgBoxDisp(oMyQuery.Text)
End If

Log in to get a better experience