Exemple #1
0
 public static extern uint GetBkColor(HDC hDC);
Exemple #2
0
 public static extern bool SetViewportOrgEx(HDC hDC, int x, int y, out Win32.POINT pptOld);
Exemple #3
0
 public static extern nuint SetTextAlign(HDC hDC, nuint align);
Exemple #4
0
 public static extern bool SetWindowExtEx(HDC hDC, int x, int y, out Win32.SIZE size);
Exemple #5
0
 public static extern uint GetNearestColor(HDC hDC, uint color);
Exemple #6
0
 public static extern bool GetTextMetrics(HDC hdc, out Win32.TEXTMETRIC lptm);
Exemple #7
0
 public static extern bool RectVisible(HDC hDC, ref Win32.RECT rc);
Exemple #8
0
 public static extern bool GetDCOrgEx(HDC hDC, out Win32.POINT pptOld);
Exemple #9
0
 public uint GetDCOrg(HDC hDC)
 {
     Win32.POINT pt;
     GetDCOrgEx(hDC, out pt);
     return(pt.ToDWord());
 }
Exemple #10
0
 public static extern bool GetCurrentPositionEx(HDC hdc, out Win32.POINT lpPoint);
Exemple #11
0
 public uint GetCurrentPosition(HDC hDC)
 {
     Win32.POINT pt;
     GetCurrentPositionEx(hDC, out pt);
     return(pt.ToDWord());
 }
Exemple #12
0
 public static extern nint GetClipBox(HDC hDC, out Win32.RECT rc);
Exemple #13
0
 public static extern nint GetBkMode(HDC hDC);
Exemple #14
0
 public static extern nint SetROP2(HDC hDC, nint mode);
Exemple #15
0
 public static extern uint GetTextColor(HDC hDC);
Exemple #16
0
 public static extern nint _GetDeviceCaps(HDC hDC, nint cap);
Exemple #17
0
 static extern bool GetTextExtentPoint(HDC hdc, string lpString, int cbString, out Win32.SIZE lpSize);
Exemple #18
0
 public static extern nint GetMapMode(HDC hDC);
Exemple #19
0
 public static extern bool PtVisible(HDC hDC, nint x, nint y);
Exemple #20
0
 public static extern nint SetStretchBltMode(HDC hDC, nint mode);
Exemple #21
0
 public static extern bool PlayMetaFile(HDC hDC, HENHMETAFILE hMetaFile);
Exemple #22
0
 public static extern uint SetTextColor(HDC hDC, uint color);
Exemple #23
0
 public static extern bool SetBrushOrgEx(HDC hDC, int x, int y, out Win32.POINT pptOld);
Exemple #24
0
 public static extern uint GetPixel(HDC hDC, nint x, nint y);
Exemple #25
0
 public static extern HGDIOBJ CreateDiscardableBitmap(HDC hDC, nint width, nint height);
Exemple #26
0
 public static extern nint GetROP2(HDC hDC);
Exemple #27
0
 public static extern nuint GetTextAlign(HDC hDC);
Exemple #28
0
 public static extern nint GetStretchBltMode(HDC hDC);
Exemple #29
0
 public static extern uint _GetSystemPaletteEntries(HDC hDC, uint iStartIndex, uint nEntries, IntPtr ptr);
Exemple #30
0
 public static extern nint SetMapMode(HDC hDC, nint mode);