Skip to content

Commit 98bce22

Browse files
committed
Added comment for Rectangle method.
1 parent 1e6c116 commit 98bce22

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ASPNetImage/Source/NetImage.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1496,6 +1496,13 @@ public bool LoadImage(string imageFilePath)
14961496
return false;
14971497
}
14981498

1499+
/// <summary>
1500+
/// Draws a rectangle with the coordinates of the upper-left and lower-right coordinates provided.
1501+
/// </summary>
1502+
/// <param name="intX1"></param>
1503+
/// <param name="intY1"></param>
1504+
/// <param name="intX2"></param>
1505+
/// <param name="intY2"></param>
14991506
public void Rectangle(int intX1, int intY1, int intX2, int intY2)
15001507
{
15011508
Graphics graphicsDest = GetGraphicsImage(_image, ImageFormat.ToString());

0 commit comments

Comments
 (0)