SVGMarkerElementBuilder.Orient

Orient(Orient)

Sets the ‘orient’ attribute of the SVG ‘marker’ element, specifying the orientation of the marker.

public SVGMarkerElementBuilder Orient(Orient auto)
ParameterTypeDescription
autoOrientThe orientation setting, either ‘auto’ or a specific angle.

Return Value

The current instance of SVGMarkerElementBuilder for method chaining.

See Also


Orient(double, AngleUnits)

Sets the ‘orient’ attribute of the SVG ‘marker’ element, specifying the orientation angle of the marker.

public SVGMarkerElementBuilder Orient(double angle, AngleUnits unit = AngleUnits.Degrees)
ParameterTypeDescription
angleDoubleThe angle of orientation.
unitAngleUnitsThe unit of measurement for the angle (default is degrees).

Return Value

The current instance of SVGMarkerElementBuilder for method chaining.

See Also