Class PdfExponentialInterpolationFunction
Implements PDF Exponential Interpolation Function.
Inherited Members
      System.Object.Equals(System.Object)
    
      System.Object.Equals(System.Object, System.Object)
    
      System.Object.GetHashCode()
    
      System.Object.GetType()
    
      System.Object.MemberwiseClone()
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
      System.Object.ToString()
    
Namespace: Syncfusion.Pdf.Functions
Assembly: Syncfusion.Pdf.Base.dll
Syntax
public class PdfExponentialInterpolationFunction : PdfFunction, IPdfWrapper
  Constructors
PdfExponentialInterpolationFunction(Boolean)
Initializes a new instance of the PdfExponentialInterpolationFunction class.
Declaration
public PdfExponentialInterpolationFunction(bool Init)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Boolean | Init | init  | 
      
Fields
m_c0
Local variable to store the function result when x = 0.
Declaration
protected float[] m_c0
  Field Value
| Type | 
|---|
| System.Single[] | 
m_c1
Local variable to store the function result when x = 1.
Declaration
protected float[] m_c1
  Field Value
| Type | 
|---|
| System.Single[] | 
Properties
C0
Gets or sets the function result when x = 0.
Declaration
public float[] C0 { get; set; }
  Property Value
| Type | 
|---|
| System.Single[] | 
C1
Gets or sets the function result when x = 1.
Declaration
public float[] C1 { get; set; }
  Property Value
| Type | 
|---|
| System.Single[] | 
Exponent
Gets or sets the Exponent.
Declaration
public float Exponent { get; set; }
  Property Value
| Type | 
|---|
| System.Single |