Pinta.ImageManipulation.Rectangle.FromLTRB C# (CSharp) Méthode

FromLTRB() public static méthode

public static FromLTRB ( int left, int top, int right, int bottom ) : Rectangle
left int
top int
right int
bottom int
Résultat Rectangle
		public static Rectangle FromLTRB (int left, int top, int right, int bottom)
		{
			return new Rectangle (left, top, right - left + 1,
			bottom - top + 1);
		}