Version

InnerBoundingBox Method

Rotates a rectangle using its center as its axis of rotation, and returns a rectangle at the maximum size which still fits into the original bounds.
Syntax
'Declaration
 
Public Shared Function InnerBoundingBox( _
   ByVal sourceRect As RectangleF, _
   ByVal rotationAngle As Single _
) As RectangleF
public static RectangleF InnerBoundingBox( 
   RectangleF sourceRect,
   float rotationAngle
)

Parameters

sourceRect
The original rectangle.
rotationAngle
The angle of rotation in degrees.

Return Value

A rectangle at the maximum size which still fits into the original bounds.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also