Open.Core.Size.Size C# (CSharp) Method

Size() public method

Constructor.
public Size ( int width, int height )
width int The pixel width of the element.
height int The pixel height of the element.
        public Size(int width, int height)
        {
            this.width = width;
            this.height = height;
        }
        #endregion