ImageMagick.DrawableClipPath.DrawableClipPath C# (CSharp) Method

DrawableClipPath() public method

Initializes a new instance of the DrawableClipPath class.
public DrawableClipPath ( string clipPath )
clipPath string The ID of the clip path.
    public DrawableClipPath(string clipPath)
    {
      Throw.IfNullOrEmpty(nameof(clipPath), clipPath);

      ClipPath = clipPath;
    }