 | PdfiumFPDFPageObj_SetStrokeColor(IntPtr, IntPtr, IntPtr, Single) Method |
Set the stroke color, color space, and pattern of a page object.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFPageObj_SetStrokeColor(
IntPtr page_obj,
IntPtr colorSpace,
IntPtr pattern,
float[] color
)
Public Shared Sub FPDFPageObj_SetStrokeColor (
page_obj As IntPtr,
colorSpace As IntPtr,
pattern As IntPtr,
color As Single()
)
public:
static void FPDFPageObj_SetStrokeColor(
IntPtr page_obj,
IntPtr colorSpace,
IntPtr pattern,
array<float>^ color
)
static member FPDFPageObj_SetStrokeColor :
page_obj : IntPtr *
colorSpace : IntPtr *
pattern : IntPtr *
color : float32[] -> unit
public static void FPDFPageObj_SetStrokeColor(
IntPtr page_obj,
IntPtr colorSpace,
IntPtr pattern,
float[] color
)
Patagames.Pdf.Pdfium.FPDFPageObj_SetStrokeColor = function(page_obj, colorSpace, pattern, color);
Parameters
- page_obj IntPtr
- Handle to page object, could be text_object, path_object and uncolored images.
- colorSpace IntPtr
- The handle to the color space object.
- pattern IntPtr
- The handle of the pattern to set as the fill color. IntPtr.Zero if you do not need a pattern.
- color Single
- The color in the color space format.
See Also