poIAdvancedQuery GetSearchOption
Gets the search options status from the advanced query.
Syntax
advancedQuery_handle GetSearchOption name
Application
HyperView Tcl Query
Description
This command is used to get the status of the search options from the advanced query.
Inputs
- name
- Valid name options: "simulation" or "component".
Example
hwi OpenStack
hwi GetActiveClientHandle client
set ruleID [client AddQueryRule extreme]
client GetQueryRuleHandle rule_handle $ruleID
rule_handle SetExtreme "TopN 3"
set advQueryID [client AddAdvancedQuery]
client GetAdvancedQueryHandle advancedQuery_handle $advQueryID
advancedQuery_handle AddSimulations "current" "current"
advancedQuery_handle SetQuery "entity.id entity.value"
advancedQuery_handle SetQueryLogic "[rule_handle GetID]"
advancedQuery_handle SetSearchOption "simulation" true
advancedQuery_handle SetSearchOption "component" false
advancedQuery_handle GetSearchOption "simulation"
advancedQuery_handle GetSearchOption "component"
hwi CloseStack
Errors
This command returns HW_Error
, if invalid strings are passed to the
argument name.