Class WmfLineTo

Class WmfLineTo

Namespace: Aspose.Imaging.FileFormats.Wmf.Objects
Assembly: Aspose.Imaging.dll (25.7.0)

The META_LINETO record draws a line from the drawing position that isdefined in the playback device context up to, but not including, thespecified point.

public class WmfLineTo : WmfPointObject
   {
       public int X1;
       public int Y1;
       public int X2;
       public int Y2;
       public WmfLineTo(int x1, int y1, int x2, int y2)
       {
           X1 = x1;
           Y1 = y1;
           X2 = x2;
           Y2 = y2;
       }
   }

Inheritance

object MetaObject WmfObject WmfPointObject WmfLineTo

Inherited Members

WmfPointObject.Point , object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

WmfLineTo()

public WmfLineTo()
   {
   }
 English