SVG_SET_VISIBILITY

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

version 11.3


SVG_SET_VISIBILITY (svgObject{; hide})

ParameterTypeDescription
svgObjectSVG_RefReference of SVG element
hideBooleanTrue = Show, False = Hide

Description

The SVG_SET_VISIBILITY command hides or shows an SVG object having the objectRef reference. If objectRef is not the reference of an object that can be hidden, an error is generated.

If the optional hide parameter is set to True or omitted, the object will be shown. If it is False, the object will be hidden.

Example

   $svg :=SVG_New
   $object:=SVG_New_rect ($svg; 10; 10; 200; 200; 0; 0; "black";" white"; 2)
   SVG_SET_VISIBILITY ($object; False)  `The object is described but will not be rendered.

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