====== AssociativeColor ======
Property of [[:scripting:api:text-document:start|ITextDocument]]
===== Description =====
Associative Color
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:OLE_COLOR|OLE_COLOR]]**
===== Syntax =====
==== JavaScript ====
var pclr = TextDocument.AssociativeColor;
TextDocument.AssociativeColor = pclr;
==== Visual Basic Script ====
pclr = TextDocument.AssociativeColor
TextDocument.AssociativeColor = pclr
==== C++ ====
OLE_COLOR pclr;
HRESULT hr = TextDocument.get_AssociativeColor(&pclr);
hr = TextDocument.put_AssociativeColor(pclr);
===== See Also =====
[[:scripting:api:text-document:start|ITextDocument]]
~~NOTOC~~