Class EmfLineTo

Class EmfLineTo

Namespace: Aspose.Imaging.FileFormats.Emf.Emf.Records
Assembly: Aspose.Imaging.dll (25.7.0)

The EMR_LINETO record specifies a line from the current position up to, but not including, thespecified point.It resets the current position to the specified point.

public sealed class EmfLineTo : EmfRecord
{
    public int nSegs;
    public PointF[] acPts;
    public override ushort Id => (ushort)EmfRecordIds.LINE_TO;
}
public sealed class EmfLineTo : EmfRecord
{
    public int nSegs;
    public PointF[] acPts;
    public override ushort Id => (ushort)EmfRecordIds.LINE_TO;
}
The only change made is to ensure proper indentation and consistent spacing.

Inheritance

object MetaObject EmfRecord EmfLineTo

Inherited Members

EmfRecord.Type , EmfRecord.Size , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

EmfLineTo(EmfRecord)

Initializes a new instance of the Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfLineTo class.

public EmfLineTo(EmfRecord record)
   {
      base.StartRecord();
      this.Id = record.GetId(Constants.RecId_LineTo);
      this.X = record.GetLong(Constants.Tag_X);
      this.Y = record.GetLong(Constants.Tag_Y);
   }

Parameters

record EmfRecord

The record.

EmfLineTo()

Initializes a new instance of the Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfLineTo class.

public EmfLineTo()
   {
   }

Properties

Point

Gets or sets 64-bit WMF PointL object, specified in [MS-WMF] section 2.2.2.15,which specifies the coordinates of the line’s ending point.

public Point Point
    {
        get
        {
        }
        set
        {
        }
    }

Property Value

Point

 English