Show / Hide Table of Contents

Class PathData

Contains the information required to draw the path. Contains an array of PathSegmentType Operators and corresponding path data Points. A point may be on or off (off points are control points). The meaning of a point depends on associated id (or segment type) in the path segment type array.

Inheritance
object
PathData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: pdftron.PDF
Assembly: PDFTronDotNet.dll
Syntax
public class PathData

Constructors

PathData()

Create empty path data object.

Declaration
public PathData()

PathData(bool, byte[], double[])

Create a path data object

Declaration
public PathData(bool defined, byte[] operators, double[] points)
Parameters
Type Name Description
bool defined

false if this is an undefined character code

byte[] operators

an array of path segment types

double[] points

an array of path data points.

Properties

defined

Declaration
public bool defined { get; }
Property Value
Type Description
bool

operators

Declaration
public byte[] operators { get; set; }
Property Value
Type Description
byte[]

points

Declaration
public double[] points { get; set; }
Property Value
Type Description
double[]
In This Article
Back to top Generated by DocFX