scripting:api:list-pane:check-boxes

CheckBoxes

Property of IListPane

Returns CheckBoxes style

Read-Write Property of type VARIANT_BOOL

var bVal = ListPane.CheckBoxes;
ListPane.CheckBoxes = bVal;

==== Visual Basic Script ====

bVal = ListPane.CheckBoxes
ListPane.CheckBoxes = bVal

==== C++ ====

VARIANT_BOOL bVal;
HRESULT hr = ListPane.get_CheckBoxes(&bVal);
hr = ListPane.put_CheckBoxes(bVal);

===== See Also ===== IListPane