ImageGlass.ImageBox.SelectAll C# (CSharp) Method

SelectAll() public method

Creates a selection region which encompasses the entire image
Thrown if no image is currently set
public SelectAll ( ) : void
return void
        public virtual void SelectAll()
        {
            SelectionRegion = new RectangleF(PointF.Empty, ViewSize);
        }
ImageBox