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
System.Object
PathData
Namespace: pdftron.PDF
Assembly: PDFNetAndroid.dll
Syntax
public class PathData : object
Constructors
PathData()
Create empty path data object.
Declaration
public PathData()
PathData(Boolean, Byte[], Double[])
Create a path data object
Declaration
public PathData(bool defined, byte[] operators, double[] points)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | defined | false if this is an undefined character code |
System.Byte[] | operators | an array of path segment types |
System.Double[] | points | an array of path data points. |
Properties
defined
Declaration
public bool defined { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
operators
Declaration
public byte[] operators { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] |
points
Declaration
public double[] points { get; set; }
Property Value
Type | Description |
---|---|
System.Double[] |