Click or drag to resize

Pdfium.FPDFTilingPattern_SetParams Method

Set parameters to the specified tiling pattern.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static bool FPDFTilingPattern_SetParams(
	IntPtr hPattern,
	bool? bColored = null,
	TilingType? tilingType = null,
	FS_RECTF? bbox = null,
	float? xStep = null,
	float? yStep = null
)

Parameters

hPattern  IntPtr
Handle to the pattern object.
bColored  Nullable<Boolean>  (Optional)
Flag indicating whether the given pattern is colored or not.
tilingType  Nullable<TilingType>  (Optional)
A code that controls adjustments to the spacing of tiles relative to the device pixel grid.
bbox  Nullable<FS_RECTF>  (Optional)
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  Nullable<Single>  (Optional)
The desired horizontal spacing between pattern cells, measured in the pattern coordinate system.
yStep  Nullable<Single>  (Optional)
The desired vertical spacing between pattern cells, measured in the pattern coordinate system.

Return Value

Boolean
true on success; false otherwise.
See Also