Desktop Functions: Smart Device Functions:
|
Search Results for "SetTextColor" in [All]coredll1: SetTextColor
[DllImport ("coredll.dll", EntryPoint="SetTextColor", SetLastError=true)]
private static extern uint SetTextColorCE(IntPtr hdc, int crColor);
Declare Function SetTextColor Lib "coredll.dll" (TODO) As TODO Constants2: EMR_
EMR_SETTEXTCOLOR = 24, Enums
SETTEXTCOLOR = (FIRST + 36), gdi324: 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)); 5: TextOut
Private Shared Function SetTextColor(ByVal hdc As IntPtr, ByVal crColor As Integer) As UInt32
SetTextColor(Hdc, ColorTranslator.ToWin32(Color.Red)) |