Offset(DX: Integer, DY: Integer);
DX - offset along the X axis.
DY - offset along the Y axis.
The Offset method shifts the integer rectangle on DX along the X axis and on DY along the Y axis.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
Obj: ITabObject;
Rect: IGxRect;
Begin
Rect:=New GxRect.Create(0,0,Math.RandBetweenI(0,30),Math.RandBetweenI(0,30));
Obj:=UiTabSheet1.TabSheet.Objects.Add("PrxPicture", Rect.ToRectF);
(Obj As IPrxPicture).Image:=GxImage.FromFile("c:\1.bmp");
Rect.Offset(20,7);
Obj.Rectangle:=Rect.ToRectF;
End Sub Button1OnClick;
After executing the example clicking the button creates an image in the regular report. The image source is the 1.bmp file. The image is created with the random size and is shifted on 20 to the left and on 7 to the bottom.
See also: