Gdi32SetPolyFillMode Method
Sets the polygon fill mode for functions that fill polygons.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("GDI32.dll", SetLastError = true)]
public static FillMode SetPolyFillMode(
IntPtr hDc,
FillMode mode
)
<DllImportAttribute("GDI32.dll", SetLastError := true>]
Public Shared Function SetPolyFillMode (
hDc As IntPtr,
mode As FillMode
) As FillMode
Dim hDc As IntPtr
Dim mode As FillMode
Dim returnValue As FillMode
returnValue = Gdi32.SetPolyFillMode(hDc,
mode)
public:
[DllImportAttribute(L"GDI32.dll", SetLastError = true)]
static FillMode SetPolyFillMode(
IntPtr hDc,
FillMode mode
)
[<DllImportAttribute("GDI32.dll", SetLastError = true)>]
static member SetPolyFillMode :
hDc : IntPtr *
mode : FillMode -> FillMode
No code example is currently available or this language may not be supported.
- hDc IntPtr
-
A handle to the device context.
- mode FillMode
-
The new fill mode.
FillMode
The return value specifies the previous filling mode.
If an error occurs, the return value is
Alternate.