AlbLib.Imaging.GraphicObject.GraphicObject C# (CSharp) Méthode

GraphicObject() public méthode

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