Microsoft.Phone.Controls.OrientedSize.OrientedSize C# (CSharp) Method

OrientedSize() public method

public OrientedSize ( Orientation orientation, double width, double height ) : System
orientation Orientation
width double
height double
return System
        public OrientedSize( Orientation orientation, double width, double height )
        {
            _orientation = orientation;

            // All fields must be initialized before we access the this pointer
            _direct = 0.0;
            _indirect = 0.0;

            Width = width;
            Height = height;
        }
    }

Same methods

OrientedSize::OrientedSize ( Orientation orientation ) : System
OrientedSize