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

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

Initializes a new instance of the DrawablePushPattern class.
public DrawablePushPattern ( string id, double x, double y, double width, double height )
id string The ID of the pattern.
x double The X coordinate.
y double The Y coordinate.
width double The width.
height double The height.
    public DrawablePushPattern(string id, double x, double y, double width, double height)
    {
      ID = id;
      X = x;
      Y = y;
      Width = width;
      Height = height;
    }