Desktop Functions: Smart Device Functions:
|
Search Results for "DeleteDC" in [All]gdi321: AlphaBlend
static extern bool DeleteDC(IntPtr hdc);
DeleteDC(pSource); 2: BitBlt
static extern bool DeleteDC(IntPtr hdc);
DeleteDC(pSource); 3: CreateIC When you no longer need the information DC, call the DeleteDC function. 4: DeleteDC
[DllImport("gdi32.dll", EntryPoint = "DeleteDC")]
public static extern bool DeleteDC([In] IntPtr hdc);
Private Shared Function DeleteDC(hdc As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
Public Declare Function DeleteDC Lib "gdi32" _ 5: ExtEscape
if(hDC!=IntPtr.Zero) DeleteDC(hDC); 6: GetPixel
static extern bool DeleteDC(IntPtr hdc);
DeleteDC(hdcScreen); 7: StretchBlt
DeleteDC(pSource);
static extern bool DeleteDC(IntPtr hdc); user32
Win32.DeleteDC(memDc);
public extern static Bool DeleteDC(IntPtr hdc); |