|
The following code.
var rc = new XRect();
rc.String = "20 20 220 120";
Response.Write($"Rect = {rc}");
Response.Write("<br>");
rc.Resize(50, 150);
Response.Write($"Pos. = {rc}");
Produces the following output.
Rect = 20 20 220 120
Pos. = 20 20 70 170
Also see example code in: ABCpdf Text Flow Round Image
Example.
|