Click or drag to resize

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: 11.2.0.0
Syntax
public static RectangleF FromLTRB(
	float left,
	float top,
	float right,
	float bottom
)

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