PdfExponentialFunction Class

Docotic.Pdf library help > BitMiracle.Docotic.Pdf > PdfExponentialFunction Class
Defines an exponential interpolation of one input value and n output values: f(x) = y0, ..., yn-1.

Inheritance Hierarchy

System.Object
  BitMiracle.Docotic.Pdf.PdfFunction
    BitMiracle.Docotic.Pdf.PdfExponentialFunction

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public sealed class PdfExponentialFunction : PdfFunction
VB
Public NotInheritable Class PdfExponentialFunction
	Inherits PdfFunction

The PdfExponentialFunction type exposes the following members.

Constructors

  NameDescription
Public methodPdfExponentialFunction(PdfDocument, Double, Double[])
Initializes a new instance of the PdfExponentialFunction class.
Public methodPdfExponentialFunction(PdfDocument, Double, Double[], Double[], Double[])
Initializes a new instance of the PdfExponentialFunction class.
Public methodPdfExponentialFunction(PdfDocument, Double, Double[], Double[], Double[], Double[])
Initializes a new instance of the PdfExponentialFunction class.

Properties

  NameDescription
Public propertyC0
Gets the array of numbers defining the function result when x = 0.0.
Public propertyC1
Gets the array of numbers defining the function result when x = 1.0.
Public propertyDomain
Gets the domain of the function.
Public propertyExponent
Gets the interpolation exponent of this function.
Public propertyRange
Gets the range of the function.

Methods

  NameDescription
Public methodEquals (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodToString
Returns a String that represents this instance.
(Overrides Object.ToString().)

See Also