Interface ISVGAnimatedPathData

Interface ISVGAnimatedPathData

Nombre del espacio: Aspose.Svg.Paths Asamblea: Aspose.SVG.dll (25.5.0)

La interfaz SVGAnimatedPathData soporta elementos que tienen un atributo ‘d’ que mantiene los datos de ruta SVG, y apoya la capacidad de animar ese atribute.

[DOMObject]
[DOMName("SVGAnimatedPathData")]
[ComVisible(true)]
public interface ISVGAnimatedPathData

Properties

AnimatedPathSegList

Proporciona acceso a los contenidos animados actuales del ’d’ atributo en una forma que coincide uno por uno con la sintaxe de SVG. Si el atributo o la propiedad se anima, contiene el valor animado actual del attribute o propiedade, y tanto el objeto mismo como su contenido se leen únicamente.

[DOMName("animatedPathSegList")]
SVGPathSegList AnimatedPathSegList { get; }

Valor de la propiedad

SVGPathSegList

PathSegList

Proporciona acceso al contenido básico (es decir, estático) del atributo ‘d’ en una forma que se ajusta uno a uno con la síntesis de SVG.Por lo tanto, si el atributo ‘d’ tiene un comando “absoluto moveto (M)” y un “absoluuto arcto (A)” entonces pathSegList tendrá dos entradas: un SVG_PATHSEG_MOVETO_ABS y uno svg_pathseg_arc_abs.

[DOMName("pathSegList")]
SVGPathSegList PathSegList { get; }

Valor de la propiedad

SVGPathSegList

 Español