Desktop Functions: Smart Device Functions:
|
Search Results for "CreateSolidBrush" in [All]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)); 3: ExtFloodFill
public static extern IntPtr CreateSolidBrush(int crColor);
IntPtr vBrush = CreateSolidBrush(ColorTranslator.ToWin32(Color.Red)); 4: FillRgn
static extern IntPtr CreateSolidBrush(uint crColor);
IntPtr brush = CreateSolidBrush(0x0); // black, of format : //0x00bbggrr 5: RoundRect
public static extern IntPtr CreateSolidBrush(uint crColor);
IntPtr theBrush = GDI32.CreateSolidBrush((uint)GDI32.RGB(Color.White)); coredll |