Exemplo n.º 1
0
 public static extern RegionType ExtSelectClipRgn(
     DeviceContext hdc,
     RegionHandle hrgn,
     CombineRegionMode fnMode);
Exemplo n.º 2
0
 public static extern int GetMetaRgn(
     DeviceContext hdc,
     RegionHandle hrgn);
Exemplo n.º 3
0
 public static extern bool RectInRegion(
     RegionHandle hrgn,
     [In] ref RECT lprc);
Exemplo n.º 4
0
 public static extern bool SetRectRgn(
     RegionHandle hrgn,
     int nLeftRect,
     int nTopRect,
     int nRightRect,
     int nBottomRect);
Exemplo n.º 5
0
 public static extern bool PaintRgn(
     DeviceContext hdc,
     RegionHandle hrgn);
Exemplo n.º 6
0
 public static extern bool PtInRegion(
     RegionHandle hrgn,
     int X,
     int Y);
Exemplo n.º 7
0
 public static extern RegionType GetRgnBox(
     RegionHandle hrgn,
     out RECT lprc);
Exemplo n.º 8
0
 public static RegionType SelectClippingRegion(DeviceContext deviceContext, RegionHandle region)
 {
     return(Imports.SelectClipRgn(deviceContext, region));
 }
Exemplo n.º 9
0
 public static extern bool FrameRgn(
     DeviceContext hdc,
     RegionHandle hrgn,
     BrushHandle hbr,
     int nWidth,
     int nHeight);
Exemplo n.º 10
0
 public static extern uint GetRegionData(
     RegionHandle hRgn,
     uint dwCount,
     IntPtr lpRgnData);
Exemplo n.º 11
0
 public static extern bool FillRgn(
     DeviceContext hdc,
     RegionHandle hrgn,
     BrushHandle hbr);
Exemplo n.º 12
0
 public static extern bool EqualRgn(
     RegionHandle hSrcRgn1,
     RegionHandle hSrcRgn2);
Exemplo n.º 13
0
 public static extern RegionType CombineRgn(
     RegionHandle hrgnDest,
     RegionHandle hrgnSrc1,
     RegionHandle hrgnSrc2,
     CombineRegionMode fnCombineMode);
Exemplo n.º 14
0
 public static extern int GetRandomRgn(
     DeviceContext hdc,
     RegionHandle hrgn,
     int iNum);
Exemplo n.º 15
0
 public static extern RegionType OffsetRgn(
     RegionHandle hrgn,
     int nXOffset,
     int nYOffset);
Exemplo n.º 16
0
 public static extern RegionType SelectClipRgn(
     DeviceContext hdc,
     RegionHandle hrgn);
Exemplo n.º 17
0
 public static RegionType CombineRegion(RegionHandle destination, RegionHandle sourceOne, RegionHandle sourceTwo, CombineRegionMode mode)
 {
     return(Imports.CombineRgn(destination, sourceOne, sourceTwo, mode));
 }