[]
Represents the 'pattern' element.
public class SvgPatternElement : SvgElement
Initializes a new instance of the SvgPatternElement class.
public SvgPatternElement()
Gets the SVG name of SvgPatternElement.
public const string SvgName = "pattern"
Gets the SVG name of the current element.
public override string ElementName { get; }
Gets or sets the content height.
public SvgLength? Height { get; set; }
Gets or sets a reference to a different pattern element within the SVG document.
public SvgReference Href { get; set; }
Gets or sets a value specifying the coordinate system for the contents of the SvgPatternElement.
public SvgUnitType? PatternContentUnits { get; set; }
Gets or sets the list of additional transformations from the pattern coordinate system onto the target coordinate system.
public List<SvgTransform> PatternTransform { get; set; }
Gets or sets a value specifying the coordinate system for the positional attributes.
public SvgUnitType? PatternUnits { get; set; }
Gets or sets a value indicating how referenced objects should be fitted with respect to the reference rectangle.
public SvgPreserveAspectRatio? PreserveAspectRatio { get; set; }
Gets or sets a rectangle in user space that should be mapped to the bounds of the SVG viewport established by the given element.
public SvgViewBox? ViewBox { get; set; }
Gets or sets the content width.
public SvgLength? Width { get; set; }
Gets or sets the horizontal coordinate.
public SvgLength? X { get; set; }
Gets or sets the vertical coordinate.
public SvgLength? Y { get; set; }