ImageMagick.DrawableColor.DrawableColor C# (CSharp) Method

DrawableColor() public method

Initializes a new instance of the DrawableColor class.
public DrawableColor ( double x, double y, PaintMethod paintMethod )
x double The X coordinate.
y double The Y coordinate.
paintMethod PaintMethod The paint method to use.
    public DrawableColor(double x, double y, PaintMethod paintMethod)
    {
      X = x;
      Y = y;
      PaintMethod = paintMethod;
    }