4D v16

SVG_SET_TRANSFORM_TRANSLATE

Home

 
4D v16
SVG_SET_TRANSFORM_TRANSLATE

SVG_SET_TRANSFORM_TRANSLATE 


 

SVG_SET_TRANSFORM_TRANSLATE ( svgObject ; x {; y} ) 
Parameter Type   Description
svgObject  SVG_Ref in Reference of SVG element
Longint in Coordinate on X axis
Longint in Coordinate on Y axis

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

 
PROPERTIES 

Product: 4D
Theme: Attributes
Number: 65946

 
HISTORY 

Created: Composant 4D SVG v11.3

 
ARTICLE USAGE

4D SVG Component ( 4D v16)