poIAdvancedQuery SetNumericFormat

Sets the numeric format for output values.

Syntax

advancedQuery_handle SetNumericFormat format

Application

HyperView Tcl Modify

Description

This command is used to set the numeric format to the advanced query to get the formatted output values.

Inputs

format
Accepted formats include: fixed, scientific, and engineering.

Example

To set the numeric format to the advanced query:
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 SetNumericFormat "fixed"
advancedQuery_handle GetValueList 
hwi CloseStack

Errors

This command returns HW_Error, if invalid strings are passed to the argument name.