AssociativeColor

Property of ITextDocument

Description

Associative Color

Property type

Read-Write Property of type 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

ITextDocument