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