AlbLib.Imaging.GraphicObject.GraphicObject C# (CSharp) Method

GraphicObject() public method

public GraphicObject ( ImageBase image, Point location ) : System
image ImageBase /// Source image. ///
location Point /// Location of object. ///
return System
        public GraphicObject(ImageBase image, Point location)
        {
            this.image = image;
            Location = location;
        }
GraphicObject