ImageGlass.ImageBox.Scale C# (CSharp) Method

Scale() protected method

Scales the specified integer according to the current zoom factor.
protected Scale ( int value ) : int
value int The value to scale.
return int
        protected int Scale(int value)
        {
            return Convert.ToInt32(value * ZoomFactor);
        }
ImageBox