 | PdfiumFPDFShadingPattern_GetBoundingBox Method |
Get bounding box of the shading.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFShadingPattern_GetBoundingBox(
IntPtr shadding_pattern,
out float left,
out float top,
out float right,
out float bottom
)
Public Shared Sub FPDFShadingPattern_GetBoundingBox (
shadding_pattern As IntPtr,
<OutAttribute> ByRef left As Single,
<OutAttribute> ByRef top As Single,
<OutAttribute> ByRef right As Single,
<OutAttribute> ByRef bottom As Single
)
public:
static void FPDFShadingPattern_GetBoundingBox(
IntPtr shadding_pattern,
[OutAttribute] float% left,
[OutAttribute] float% top,
[OutAttribute] float% right,
[OutAttribute] float% bottom
)
static member FPDFShadingPattern_GetBoundingBox :
shadding_pattern : IntPtr *
left : float32 byref *
top : float32 byref *
right : float32 byref *
bottom : float32 byref -> unit
public static void FPDFShadingPattern_GetBoundingBox(
IntPtr shadding_pattern,
/** @attribute OutAttribute */ /** @ref */float left,
/** @attribute OutAttribute */ /** @ref */float top,
/** @attribute OutAttribute */ /** @ref */float right,
/** @attribute OutAttribute */ /** @ref */float bottom
)
Patagames.Pdf.Pdfium.FPDFShadingPattern_GetBoundingBox = function(shadding_pattern, left, top, right, bottom);
Parameters
- shadding_pattern IntPtr
- The handle to the shading pattern.
- left Single
- X coordinate of the shading's left edge.
- top Single
- Y coordinate of the shading's top edge.
- right Single
- X coordinate of the shading's right edge.
- bottom Single
- Y coordinate of the shading's bottom edge.
Remarks
The coordinates are interpreted in the shading’s target coordinate space.
If present, this bounding box is applied as a temporary clipping boundary when the shading is painted,
in addition to the current clipping path and any other clipping boundaries in effect at that time.
See Also