 | PdfiumFPDFTilingPattern_GetParams Method |
Get parameters from the specified tiling pattern.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFTilingPattern_GetParams(
IntPtr hPattern,
out bool bColored,
out TilingType tilingType,
out FS_RECTF bbox,
out float xStep,
out float yStep
)
Public Shared Function FPDFTilingPattern_GetParams (
hPattern As IntPtr,
<OutAttribute> ByRef bColored As Boolean,
<OutAttribute> ByRef tilingType As TilingType,
<OutAttribute> ByRef bbox As FS_RECTF,
<OutAttribute> ByRef xStep As Single,
<OutAttribute> ByRef yStep As Single
) As Boolean
public:
static bool FPDFTilingPattern_GetParams(
IntPtr hPattern,
[OutAttribute] bool% bColored,
[OutAttribute] TilingType% tilingType,
[OutAttribute] FS_RECTF% bbox,
[OutAttribute] float% xStep,
[OutAttribute] float% yStep
)
static member FPDFTilingPattern_GetParams :
hPattern : IntPtr *
bColored : bool byref *
tilingType : TilingType byref *
bbox : FS_RECTF byref *
xStep : float32 byref *
yStep : float32 byref -> bool
public static boolean FPDFTilingPattern_GetParams(
IntPtr hPattern,
/** @attribute OutAttribute */ /** @ref */boolean bColored,
/** @attribute OutAttribute */ /** @ref */TilingType tilingType,
/** @attribute OutAttribute */ /** @ref */FS_RECTF bbox,
/** @attribute OutAttribute */ /** @ref */float xStep,
/** @attribute OutAttribute */ /** @ref */float yStep
)
Patagames.Pdf.Pdfium.FPDFTilingPattern_GetParams = function(hPattern, bColored, tilingType, bbox, xStep, yStep);
Parameters
- hPattern IntPtr
- Handle to the pattern object.
- bColored Boolean
- Flag indicating whether the given pattern is colored or not.
- tilingType TilingType
- A code that controls adjustments to the spacing of tiles relative to the device pixel grid.
- bbox FS_RECTF
- A rectangle in the pattern coordinate system giving the coordinates of the left, bottom, right, and top edges, respectively, of the pattern cell’s bounding box. These boundaries are used to clip the pattern cell.
- xStep Single
- The desired horizontal spacing between pattern cells, measured in the pattern coordinate system.
- yStep Single
- The desired vertical spacing between pattern cells, measured in the pattern coordinate system.
Return Value
Booleantrue on success; false otherwise.
See Also