====== Image ======
Property of [[:scripting:api:list-item:start|IListItem]]
===== Description =====
Image property
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:long|long]]**
===== Syntax =====
==== JavaScript ====
var nVal = ListItem.Image;
ListItem.Image = nVal;
==== Visual Basic Script ====
nVal = ListItem.Image
ListItem.Image = nVal
==== C++ ====
long nVal;
HRESULT hr = ListItem.get_Image(&nVal);
hr = ListItem.put_Image(nVal);
===== See Also =====
[[:scripting:api:list-item:start|IListItem]]
~~NOTOC~~