ImageMagick.Paths.LineToHorizontalRel C# (CSharp) Метод

LineToHorizontalRel() публичный Метод

Initializes a new instance of the PathLineToHorizontalRel class.
public LineToHorizontalRel ( double x ) : Paths
x double The X coordinate.
Результат Paths
    public Paths LineToHorizontalRel(double x)
    {
      _Paths.Add(new PathLineToHorizontalRel(x));
      return this;
    }