 | PdfiumFPDFShadingType3_GetCoords Method |
Get the centers and radii of the starting and ending circles
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFShadingType3_GetCoords(
IntPtr shadding_pattern,
out float x0,
out float y0,
out float r0,
out float x1,
out float y1,
out float r1
)
Public Shared Function FPDFShadingType3_GetCoords (
shadding_pattern As IntPtr,
<OutAttribute> ByRef x0 As Single,
<OutAttribute> ByRef y0 As Single,
<OutAttribute> ByRef r0 As Single,
<OutAttribute> ByRef x1 As Single,
<OutAttribute> ByRef y1 As Single,
<OutAttribute> ByRef r1 As Single
) As Boolean
public:
static bool FPDFShadingType3_GetCoords(
IntPtr shadding_pattern,
[OutAttribute] float% x0,
[OutAttribute] float% y0,
[OutAttribute] float% r0,
[OutAttribute] float% x1,
[OutAttribute] float% y1,
[OutAttribute] float% r1
)
static member FPDFShadingType3_GetCoords :
shadding_pattern : IntPtr *
x0 : float32 byref *
y0 : float32 byref *
r0 : float32 byref *
x1 : float32 byref *
y1 : float32 byref *
r1 : float32 byref -> bool
public static boolean FPDFShadingType3_GetCoords(
IntPtr shadding_pattern,
/** @attribute OutAttribute */ /** @ref */float x0,
/** @attribute OutAttribute */ /** @ref */float y0,
/** @attribute OutAttribute */ /** @ref */float r0,
/** @attribute OutAttribute */ /** @ref */float x1,
/** @attribute OutAttribute */ /** @ref */float y1,
/** @attribute OutAttribute */ /** @ref */float r1
)
Patagames.Pdf.Pdfium.FPDFShadingType3_GetCoords = function(shadding_pattern, x0, y0, r0, x1, y1, r1);
Parameters
- shadding_pattern IntPtr
- The handle to the shading pattern.
- x0 Single
- The X coordinate of the center of starting circle, expressed in the shading’s target coordinate space.
- y0 Single
- The Y coordinate of the center of starting circle, expressed in the shading’s target coordinate space.
- r0 Single
- The radius of starting circle, expressed in the shading’s target coordinate space.
- x1 Single
- The X coordinate of the center of ending circle, expressed in the shading’s target coordinate space.
- y1 Single
- The Y coordinate of the center of ending circle, expressed in the shading’s target coordinate space.
- r1 Single
- The radius of starting circle, expressed in the shading’s target coordinate space.
Return Value
BooleanTrue for successful; false if any error has occurred.
Remarks
See Also