|
The following code.
var rc = new XRect();
rc.String = "20 20 220 120";
Response.Write($"Rect = {rc}");
Response.Write("<br>");
rc.Position(50, 50);
Response.Write($"Pos. = {rc}");
Dim rc As New XRect()
rc.String = "20 20 220 120"
Response.Write($"Rect = {rc}")
Response.Write("<br>")
rc.Position(50, 50)
Response.Write($"Pos. = {rc}")
Produces the following output.
Rect = 20 20 220 120
Pos. = 50 50 250 150
Also see example code in: Doc AddImageDoc Function,
Doc TopDown
Property, Doc
Transform Property, XImage Selection
Property, XTransform Skew Function,
XTransform
Translate Function.
|