 | PdfiumFPDFPageObj_GetStrokeColor(IntPtr, IntPtr, IntPtr) Method |
Get the stroke color and color space of a page object.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static float[] FPDFPageObj_GetStrokeColor(
IntPtr page_obj,
out IntPtr colorSpace,
out IntPtr pattern
)
Public Shared Function FPDFPageObj_GetStrokeColor (
page_obj As IntPtr,
<OutAttribute> ByRef colorSpace As IntPtr,
<OutAttribute> ByRef pattern As IntPtr
) As Single()
public:
static array<float>^ FPDFPageObj_GetStrokeColor(
IntPtr page_obj,
[OutAttribute] IntPtr% colorSpace,
[OutAttribute] IntPtr% pattern
)
static member FPDFPageObj_GetStrokeColor :
page_obj : IntPtr *
colorSpace : IntPtr byref *
pattern : IntPtr byref -> float32[]
public static float[] FPDFPageObj_GetStrokeColor(
IntPtr page_obj,
/** @attribute OutAttribute */ /** @ref */IntPtr colorSpace,
/** @attribute OutAttribute */ /** @ref */IntPtr pattern
)
Patagames.Pdf.Pdfium.FPDFPageObj_GetStrokeColor = function(page_obj, colorSpace, pattern);
Parameters
- page_obj IntPtr
- Handle to a page object. Returned by FPDFPageObj_Create(PageObjectTypes) or FPDFPage_GetObject(IntPtr, Int32)
- colorSpace IntPtr
- Gets the handle to the color space object.
- pattern IntPtr
- Gets the handle to the pattern object.
Return Value
SingleAn array containing the color components in color space format; null if any error occurs.
See Also