====== Editable ======
Property of [[:scripting:api:list-pane:start|IListPane]]
===== Description =====
Returns Editable state
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]]**
===== Syntax =====
==== JavaScript ====
var bVal = ListPane.Editable;
ListPane.Editable = bVal;
==== Visual Basic Script ====
bVal = ListPane.Editable
ListPane.Editable = bVal
==== C++ ====
VARIANT_BOOL bVal;
HRESULT hr = ListPane.get_Editable(&bVal);
hr = ListPane.put_Editable(bVal);
===== See Also =====
[[:scripting:api:list-pane:start|IListPane]]
~~NOTOC~~