RectangleFFromLTRB Method  | 
 
                Creates a System.Drawing.RectangleF structure with upper-left corner and
                lower-right corner at the specified locations.
            
 
    Namespace: 
   Easymap.AddIn.Common.Graphics
    Assembly:
   EasyMap.AddIn (in EasyMap.AddIn.dll) Version: 12.0.0.0
Syntaxpublic static RectangleF FromLTRB(
	float left,
	float top,
	float right,
	float bottom
)
Public Shared Function FromLTRB ( 
	left As Single,
	top As Single,
	right As Single,
	bottom As Single
) As RectangleF
Parameters
- left
 - Type: SystemSingle
The x-coordinate of the upper-left corner of the rectangular region. - top
 - Type: SystemSingle
The y-coordinate of the upper-left corner of the rectangular region. - right
 - Type: SystemSingle
The x-coordinate of the lower-right corner of the rectangular region. - bottom
 - Type: SystemSingle
The y-coordinate of the lower-right corner of the rectangular region. 
Return Value
Type: 
RectangleF
                The new System.Drawing.RectangleF that this method creates.
See Also