The GetNearestColor function returns a color value identifying a color from the system palette that will be displayed when the specified color value is used
COLORREF GetNearestColor(
HDC hdc, // handle of device context
COLORREF crColor // color to be matched
); DECLARE INTEGER GetNearestColor IN "gdi32";
INTEGER hdc,;
INTEGER crColor hdc Identifies the device context.
crColor Specifies a color value that identifies a requested color
If the function succeeds, the return value identifies a color from the system palette that corresponds to the given color value
Home