DesignerDocument.queryCommandIndeterm Method

SharePoint Designer Developer Reference

Returns a Boolean that determines if the specified command will return an indeterminate state.

Syntax

expression.queryCommandIndeterm(cmdID)

expression   Required. A variable that represents a DesignerDocument object.

Parameters

Name Required/Optional Data Type Description
cmdID Required String Represents the specified command identifier. For a list of available commands see the execCommand method.

Return Value
Boolean

Remarks

An indeterminate state means that the command could not return a binary result with the specified parameter. For example, the Bold command will return indeterminate if the current selection contains both bold and non-bold text. If True, the command will return an indeterminate result. If False, the command will return a binary result.

See Also