ImageMagick.DrawableText.DrawableText C# (CSharp) Method

DrawableText() public method

Initializes a new instance of the DrawableText class.
public DrawableText ( double x, double y, string value )
x double The X coordinate.
y double The Y coordinate.
value string The text to draw.
    public DrawableText(double x, double y, string value)
    {
      Throw.IfNullOrEmpty(nameof(value), value);

      X = x;
      Y = y;
      Value = value;
    }