Desktop Functions: Smart Device Functions:
|
Search Results for "SetTextColor" in [All]Constants1: EMR_
EMR_SETTEXTCOLOR = 24, Enums
SETTEXTCOLOR = (FIRST + 36), gdi323: SetTextColor
static extern uint SetTextColor(IntPtr hdc, int crColor);
public Function SetTextColor(hdc As IntPtr, crColor as Integer) as UInteger
Public Declare Function SetTextColor Lib "gdi32.dll" _
static extern int SetTextColor(IntPtr hdc, int crColor);
SetTextColor(hdc, ColorTranslator.ToWin32(Color.SteelBlue)); 4: TextOut
Private Shared Function SetTextColor(ByVal hdc As IntPtr, ByVal crColor As Integer) As UInt32
SetTextColor(Hdc, ColorTranslator.ToWin32(Color.Red)) coredll5: SetTextColor
|