 | PdfiumFPDFShadingType3_GetDomain Method |
Get the limiting values of a parametric variable t.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFShadingType3_GetDomain(
IntPtr shadding_pattern,
out float t0,
out float t1
)
Public Shared Function FPDFShadingType3_GetDomain (
shadding_pattern As IntPtr,
<OutAttribute> ByRef t0 As Single,
<OutAttribute> ByRef t1 As Single
) As Boolean
public:
static bool FPDFShadingType3_GetDomain(
IntPtr shadding_pattern,
[OutAttribute] float% t0,
[OutAttribute] float% t1
)
static member FPDFShadingType3_GetDomain :
shadding_pattern : IntPtr *
t0 : float32 byref *
t1 : float32 byref -> bool
public static boolean FPDFShadingType3_GetDomain(
IntPtr shadding_pattern,
/** @attribute OutAttribute */ /** @ref */float t0,
/** @attribute OutAttribute */ /** @ref */float t1
)
Patagames.Pdf.Pdfium.FPDFShadingType3_GetDomain = function(shadding_pattern, t0, t1);
Parameters
- shadding_pattern IntPtr
- The handle to the shading pattern.
- t0 Single
- The minimum value of a parametric variable t.
- t1 Single
- The minimum value of a parametric variable t.
Return Value
BooleanTrue for successful; false if any error has occurred.
Remarks
The variable is considered to vary linearly between these two values as the color gradient varies between the starting and ending circles.
The variable t becomes the input argument to the color function(s).
See Also