====== CheckBoxes ======
Property of [[:scripting:api:list-pane:start|IListPane]]
===== Description =====
Returns CheckBoxes style
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]]**
===== Syntax =====
==== JavaScript ====
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 =====
[[:scripting:api:list-pane:start|IListPane]]
~~NOTOC~~