SVG_SET_TRANSFORM_TRANSLATE

4D - Documentation   Français   English   German   4D SVG Component, Command Theme List   4D SVG Component, Index   Back   Previous   Next

version 11.3


SVG_SET_TRANSFORM_TRANSLATE (svgObject; x{; y})

ParameterTypeDescription
svgObjectSVG_RefReference of SVG element
xNumberCoordinate on X axis
yNumberCoordinate on Y axis

Description

The SVG_SET_TRANSFORM_TRANSLATE command specifies a horizontal and/or vertical relocation of the SVG object having the svgObject reference.

If the x value is not null, the object will be moved horizontally for the number of units passed; otherwise, it will be ignored.

If the y parameter is provided, the object will be moved vertically for the number of units passed.

Example

   svgRef := SVG_New 
      `Draw a red rectangle
   $Object:=SVG_New_rect (svgRef;0;0;200;100;0;0;"black";"red")
      `Draw a square at 0,0
   $Object:=SVG_New_rect (svgRef;0;0;20;20)
      `Move the square to 150,50
   SVG_SET_TRANSFORM_TRANSLATE ($Object;150;50)

See Also

SVG_SET_TRANSFORM_ROTATE.


4D - Documentation   Français   English   German   4D SVG Component, Command Theme List   4D SVG Component, Index   Back   Previous   Next