Dies ist die alte 4D Dokumentations-Website. Die neue und aktualisierte Dokumentation finden Sie unter developer.4d.com |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D v20 R8
SVG_Define_shadow
|
SVG_Define_shadow ( parentSVGObject ; id {; deviation {; offsetX {; offsetY}}} ) -> Funktionsergebnis | ||||||||
Parameter | Typ | Beschreibung | ||||||
parentSVGObject | SVG_Ref |
![]() |
Reference of parent element | |||||
id | String |
![]() |
Name of filter | |||||
deviation | Lange Ganzzahl |
![]() |
Value of shadow dispersion | |||||
offsetX | Lange Ganzzahl |
![]() |
Offset on X axis | |||||
offsetY | Lange Ganzzahl |
![]() |
Offset on Y axis | |||||
Funktionsergebnis | SVG_Ref |
![]() |
Reference of filter | |||||
The SVG_Define_shadow command sets a new shadow filter in the SVG container designated by parentSVGObject and returns its reference. If parentSVGObject is not an SVG document, an error is generated.
This filter will be applied to objects for which a shadow is desired using the SVG_SET_FILTER command.
The id parameter specifies the name of the filter. This name will be used to associate a filter with an object. If an element with the same name exists, it will be replaced.
The optional deviation parameter sets the intensity of the shadow dispersion. Default value: 4.
The optional offsetX and offsetY parameters specify, respectively, the horizontal and vertical offset of the shadow with respect to the object. Default value: 4.
Declaration of a filter that can be used to make a shadow beneath an object:
$svg:=SVG_New
$text:=SVG_New_text($svg;"SVG";52;76-45;"Verdana";45)
SVG_SET_FONT_COLOR($text;"red")
`Set filter
SVG_Define_shadow($svg;"myShadow")
`and apply it to text
SVG_SET_FILTER($text;"myShadow")
Produkt: 4D
Thema: Structure and Definitions
Nummer:
65987
Erstellt: Composant 4D SVG v11.3
4D SVG ( 4D v20 R8)