SetColorAdjustment The SetColorAdjustment function sets the color adjustment values for a device context (DC) using the specified values.
VB4-32,5,6
Declare Function SetColorAdjustment Lib "gdi32" Alias "SetColorAdjustment" (ByVal hdc As Long, lpca As COLORADJUSTMENT) As Long |
Operating Systems Supported |
Requires Windows NT 3.1 or later; Win9x/ME: Not supported |
- hdc
Identifies the device context.
- lpca
Points to a COLORADJUSTMENT structure containing the color adjustment values. |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError. |
|