indeterminate property

Sets or retrieves whether the user has changed the status of a input type=checkbox element. On a HTMLProgressElement element will show activity but not a specific amount.

Syntax

HRESULT value = object.put_indeterminate( v);HRESULT value = object.get_indeterminate(* p);

Property values

Type: VARIANT_BOOL

VARIANT_FALSE (false)

Default. Check box is not dimmed.

VARIANT_TRUE (true)

Check box is checked and dimmed.

Remarks

The IHTMLInputElement::indeterminate property can be used to indicate whether the user has acted on a control. For example, setting the IHTMLInputElement::indeterminate to true causes the check box to appear checked and dimmed, indicating an indeterminate state.

The value of the IHTMLInputElement::indeterminate property acts independently of the values of the IHTMLInputElement::checked and IHTMLInputElement::status properties. Creating an indeterminate state is different from disabling the control. Consequently, a check box in the indeterminate state can still receive the focus. When the user clicks an indeterminate control, the indeterminate state turns off and the checked state of the check box toggles.