internal static MagickGeometry Create(Wrapper.MagickGeometry value) { if (value == null) { return(null); } return(new MagickGeometry(value)); }
private MagickGeometry(Wrapper.MagickGeometry instance) { _Instance = instance; }
private void Initialize(int x, int y, int width, int height, bool isPercentage) { _Instance = new Wrapper.MagickGeometry(x, y, width, height, isPercentage); }
///<summary> /// Initializes a new instance of the MagickGeometry class using the specified geometry. ///</summary> ///<param name="value">Geometry specifications in the form: <width>x<height> ///{+-}<xoffset>{+-}<yoffset> (where width, height, xoffset, and yoffset are numbers)</param> public MagickGeometry(string value) { Throw.IfNullOrEmpty("value", value); _Instance = new Wrapper.MagickGeometry(value); }