Click or drag to resize

PdfFunctionDomain Property

Get the domain of the function.

Namespace: Patagames.Pdf.Net
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.100.2704
Syntax
public float[] Domain { get; }

Property Value

Single
A readonly array of 2 × Inputs numbers; null if any error occurred.
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe function object has been disposed.
UnknownFunctionTypeExceptionThe requested operation could not be performed on a function of this type.
RequiredDataIsAbsentExceptionThere is not enough data to perform the requested operation.
PdfiumExceptionThe data area passed to a system call is too small; or the parameter is incorrect.
Remarks
For each i from 0 to Inputs − 1, Domain2i must be less than or equal to Domain2i+1, and the ith input value, xi, must lie in the interval Domain2i ≤ xi ≤ Domain2i+1. Input values outside the declared domain are clipped to the nearest boundary value.
See Also