Desktop Functions: Smart Device Functions:
|
Search Results for "SetBkColor" in [All]shell32
int SetBkColor( Constants2: EMR_
EMR_SETBKCOLOR = 25, Enums
SETBKCOLOR = (FIRST + 1), coredll4: SetBkColor
[DllImport ("coredll.dll", EntryPoint="SetBkColor", SetLastError=true)]
private static extern uint SetBkColorCE(IntPtr hdc, int crColor);
Declare Function SetBkColor Lib "coredll.dll" (TODO) As TODO gdi325: SetBkColor
static extern uint SetBkColor(IntPtr hdc, int crColor);
Public Function SetBkColor(hdc As IntPtr, crColor as Integer) As UInteger
Public Declare Function SetBkColor Lib "gdi32.dll" _ 6: SetTextColor
static extern int SetBkColor(IntPtr hdc, int crColor);
SetBkColor(hdc, ColorTranslator.ToWin32(Color.LemonChiffon)); 7: TextOut
Private Shared Function SetBkColor(ByVal hdc As IntPtr, ByVal crColor As Integer) As UInt32
SetBkColor(Hdc, ColorTranslator.ToWin32(Me.BackColor)) |