FromLTRB() public static method

public static FromLTRB ( double left, double top, double right, double bottom ) : RectangleD
left double
top double
right double
bottom double
return RectangleD
 public static RectangleD Intersect(RectangleD a, RectangleD b)
 {
     return(RectangleD.FromLTRB(
                Math.Max(a.Left, b.Left),
                Math.Max(a.Top, b.Top),
                Math.Min(a.Right, b.Right),
                Math.Min(a.Bottom, b.Bottom)));
 }