LAnnRuler::GetForeColor

#include "ltwrappr.h"

virtual COLORREF LAnnRuler::GetForeColor()

NOTE: This function is now inherited directly from the parent LAnnotation class.

Gets the current value of the annotation object's foreground color.

Returns

The annotation object's current foreground color.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT LAnnRuler_GetForeColorExample(LAnnRuler  * pAnnObject) 
{ 
	L_INT nRet =SUCCESS; 
   COLORREF ThisColor; /* Object foreground color */ 
 
   /* Invert the foreground color */ 
   ThisColor = pAnnObject->GetForeColor(); 
   nRet = pAnnObject->SetForeColor(ThisColor ^ 0x00FFFFFF);  
 
	return nRet; 
} 
Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.