Desktop Functions: Smart Device Functions:
|
Search Results for "CreateSolidBrush" in [All]coredll
[DllImport("gdi32.dll", EntryPoint="CreateSolidBrush", SetLastError=true)]
public static extern IntPtr CreateSolidBrush( int crColor );
Declare Function CreateSolidBrush Lib "gdi32.dll" (TODO) As TODO gdi32
static extern IntPtr CreateSolidBrush(uint crColor);
IntPtr brush = CreateSolidBrush(0x0); // black, of format : //0x00bbggrr
static extern IntPtr CreateSolidBrush(uint crColor);
Private Shared Function CreateSolidBrush(crColor As UInteger) As IntPtr
static extern IntPtr CreateSolidBrush(uint crColor);
IntPtr brush = CreateSolidBrush((uint)ColorTranslator.ToWin32(Color.Black)); 4: ExtFloodFill
public static extern IntPtr CreateSolidBrush(int crColor);
IntPtr vBrush = CreateSolidBrush(ColorTranslator.ToWin32(Color.Red)); 5: FillRgn
static extern IntPtr CreateSolidBrush(uint crColor);
IntPtr brush = CreateSolidBrush(0x0); // black, of format : //0x00bbggrr 6: RoundRect
public static extern IntPtr CreateSolidBrush(uint crColor);
IntPtr theBrush = GDI32.CreateSolidBrush((uint)GDI32.RGB(Color.White)); |