Gdi32GetPolyFillMode Method
Retrieves the current polygon fill mode.
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 GetPolyFillMode(
IntPtr hDc
)
<DllImportAttribute("GDI32.dll", SetLastError := true>]
Public Shared Function GetPolyFillMode (
hDc As IntPtr
) As FillMode
Dim hDc As IntPtr
Dim returnValue As FillMode
returnValue = Gdi32.GetPolyFillMode(hDc)
public:
[DllImportAttribute(L"GDI32.dll", SetLastError = true)]
static FillMode GetPolyFillMode(
IntPtr hDc
)
[<DllImportAttribute("GDI32.dll", SetLastError = true)>]
static member GetPolyFillMode :
hDc : IntPtr -> FillMode
No code example is currently available or this language may not be supported.
- hDc IntPtr
-
Handle to the device context.
FillMode
If the function succeeds, the return value specifies the polygon fill mode.
If an error occurs, the return value is
Alternate.