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