23 references to GpHatch
System.Drawing.Common (7)
System\Drawing\Drawing2D\HatchBrush.cs (6)
20
GpHatch
* nativeBrush;
25
internal HatchBrush(
GpHatch
* nativeBrush)
36
return new HatchBrush((
GpHatch
*)clonedBrush);
44
PInvokeGdiPlus.GdipGetHatchStyle((
GpHatch
*)NativeBrush, &hatchStyle).ThrowIfFailed();
55
PInvokeGdiPlus.GdipGetHatchForegroundColor((
GpHatch
*)NativeBrush, (uint*)&foregroundArgb).ThrowIfFailed();
66
PInvokeGdiPlus.GdipGetHatchBackgroundColor((
GpHatch
*)NativeBrush, (uint*)&backgroundArgb).ThrowIfFailed();
System\Drawing\Pen.cs (1)
605
brush = new HatchBrush((
GpHatch
*)GetNativeBrush());
System.Private.Windows.GdiPlus (16)
Windows.Win32.PInvokeGdiPlus.gdiplus.dll.g.cs (16)
1134
/// <inheritdoc cref="GdipCreateHatchBrush(winmdroot.Graphics.GdiPlus.HatchStyle, uint, uint, winmdroot.Graphics.GdiPlus.
GpHatch
**)"/>
1135
internal static unsafe winmdroot.Graphics.GdiPlus.Status GdipCreateHatchBrush(winmdroot.Graphics.GdiPlus.HatchStyle hatchstyle, uint forecol, uint backcol, ref winmdroot.Graphics.GdiPlus.
GpHatch
* brush)
1137
fixed (winmdroot.Graphics.GdiPlus.
GpHatch
** brushLocal = &brush)
1145
internal static extern unsafe winmdroot.Graphics.GdiPlus.Status GdipCreateHatchBrush(winmdroot.Graphics.GdiPlus.HatchStyle hatchstyle, uint forecol, uint backcol, winmdroot.Graphics.GdiPlus.
GpHatch
** brush);
3571
/// <inheritdoc cref="GdipGetHatchBackgroundColor(winmdroot.Graphics.GdiPlus.
GpHatch
*, uint*)"/>
3572
internal static unsafe winmdroot.Graphics.GdiPlus.Status GdipGetHatchBackgroundColor(ref winmdroot.Graphics.GdiPlus.
GpHatch
brush, ref uint backcol)
3576
fixed (winmdroot.Graphics.GdiPlus.
GpHatch
* brushLocal = &brush)
3585
internal static extern unsafe winmdroot.Graphics.GdiPlus.Status GdipGetHatchBackgroundColor(winmdroot.Graphics.GdiPlus.
GpHatch
* brush, uint* backcol);
3587
/// <inheritdoc cref="GdipGetHatchForegroundColor(winmdroot.Graphics.GdiPlus.
GpHatch
*, uint*)"/>
3588
internal static unsafe winmdroot.Graphics.GdiPlus.Status GdipGetHatchForegroundColor(ref winmdroot.Graphics.GdiPlus.
GpHatch
brush, ref uint forecol)
3592
fixed (winmdroot.Graphics.GdiPlus.
GpHatch
* brushLocal = &brush)
3601
internal static extern unsafe winmdroot.Graphics.GdiPlus.Status GdipGetHatchForegroundColor(winmdroot.Graphics.GdiPlus.
GpHatch
* brush, uint* forecol);
3603
/// <inheritdoc cref="GdipGetHatchStyle(winmdroot.Graphics.GdiPlus.
GpHatch
*, winmdroot.Graphics.GdiPlus.HatchStyle*)"/>
3604
internal static unsafe winmdroot.Graphics.GdiPlus.Status GdipGetHatchStyle(ref winmdroot.Graphics.GdiPlus.
GpHatch
brush, ref winmdroot.Graphics.GdiPlus.HatchStyle hatchstyle)
3608
fixed (winmdroot.Graphics.GdiPlus.
GpHatch
* brushLocal = &brush)
3617
internal static extern unsafe winmdroot.Graphics.GdiPlus.Status GdipGetHatchStyle(winmdroot.Graphics.GdiPlus.
GpHatch
* brush, winmdroot.Graphics.GdiPlus.HatchStyle* hatchstyle);