OnSysColorChange method

Colors used for Content Manager OnDemand dialog boxes are updated to the current system colors. This method intended for use with C/C++.

Method
void OnSysColorChange( )
Description
The colors used for the document data are not affected.

This method should be called whenever the main window for the OLE container application receives a WM_SYSCOLORCHANGE message.

Return Value
None

C/C + +

The following example notifies a Content Manager OnDemand OLE Control when a system color change has occurred.
 CArsOle * pArsCtrl;
   .
   .
 // During WM_SYSCOLORCHANGE message handling:

 pArsCtrl->OnSysColorChange( );
   .
   .