Class EmfPlusPathPointTypeRle
Namespace: Aspose.Imaging.FileFormats.Emf.EmfPlus.Objects
Assembly: Aspose.Imaging.dll (25.2.0)
The EmfPlusPathPointTypeRle object specifies type values associated with points on a graphics path using RLE compression. 0 1 2 3 4 5 6 7 8 9 1 0 1 2 3 4 5 6 7 8 9 2 0 1 2 3 4 5 6 7 8 9 3 0 1 B|1|RunCount | PointType | B (1 bit): If set, the path points are on a Bezier curve. If clear, the path points are on a graphics line. RunCount (6 bits): The run count, which is the number of path points to be associated with the type in the PointType field. PointType (1 byte): An EmfPlusPathPointType object (section 2.2.2.31) that specifies the type to associate with the path points.
public sealed class EmfPlusPathPointTypeRle : EmfPlusBasePointType
Inheritance
object ← EmfPlusBasePointType ← EmfPlusPathPointTypeRle
Inherited Members
object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
EmfPlusPathPointTypeRle()
public EmfPlusPathPointTypeRle()
Properties
Bezier
Gets or sets a value indicating whether this Aspose.Imaging.FileFormats.Emf.EmfPlus.Objects.EmfPlusPathPointTypeRle is bezier. If set, the path points are on a Bezier curve. If clear, the path points are on a graphics line.
public bool Bezier { get; set; }
Property Value
Data
Gets or sets the data.
public int Data { get; set; }
Property Value
PointType
Gets or sets the type of the point. PointType (1 byte): An EmfPlusPathPointType object (section 2.2.2.31) that specifies the type to associate with the path points.
public EmfPlusPathPointType PointType { get; set; }
Property Value
RunCount
Gets or sets the run count. RunCount (6 bits): The run count, which is the number of path points to be associated with the type in the PointType field
public byte RunCount { get; set; }