4D v16

SVG_New_line

Home

 
4D v16
SVG_New_line

SVG_New_line 


 

SVG_New_line ( parentSVGObject ; startX ; startY ; endX ; endY {; color {; strokeWidth}} ) -> Funktionsergebnis 
Parameter Typ   Beschreibung
parentSVGObject  SVG_Ref in Reference of parent element
startX  Lange Ganzzahl in Horizontal start position
startY  Lange Ganzzahl in Vertical start position
endX  Lange Ganzzahl in Horizontal end position
endY  Lange Ganzzahl in Vertical end position
color  String in Color or gradient name
strokeWidth  Zahl in Line thickness
Funktionsergebnis  SVG_Ref in Reference of line

The SVG_New_line command creates a new line in the SVG container designated by parentSVGObject and returns its reference. The object is positioned according to the startX, startY, endX and endY coordinates. The SVG container can be the document root or any other reference to an SVG object that can contain this type of element.

The optional color parameter contains the name of the line color. (For more information about colors, please refer to the commands of the Colors and Gradients theme).

The optional strokeWidth parameter contains the pen size expressed in pixels. Its default value is 1.

Draw a blue line that is 3 pixels thick:

 svgRef:=SVG_New
 objectRef:=SVG_New_line(svgRef;10;10;200;100;"blue";3)



Siehe auch 

SVG_New_polyline
SVG_PATH_LINE_TO

 
EIGENSCHAFTEN 

Produkt: 4D
Thema: Drawing
Nummer: 65980

 
GESCHICHTE 

Geändert: Composant 4D SVG v11.4

 
ARTIKELVERWENDUNG

4D SVG ( 4D v16)