====== left ======
Property of [[:scripting:api:range:overview|IRange]]
===== Description =====
Left
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:long|long]]**
===== Syntax =====
==== JavaScript ====
var nVal = Range.left;
Range.left = nVal;
==== Visual Basic Script ====
nVal = Range.left
Range.left = nVal
==== C++ ====
long nVal;
HRESULT hr = Range.get_left(&nVal);
hr = Range.put_left(nVal);
===== See Also =====
[[:scripting:api:range:overview|IRange]]
~~NOTOC~~