[]
Specifies whether to force uniform scaling and if so, the alignment method to use.
public enum SvgAspectRatioAlign
None = 0Do not force uniform scaling.
XMaxYMax = 9Align the MinX + Width of the element's 'viewBox' with the maximum X value of the SVG viewport. Align the MinY + Height of the element's 'viewBox' with the maximum Y value of the SVG viewport.
XMaxYMid = 6Align the MinX + Width of the element's 'viewBox' with the maximum X value of the SVG viewport. Align the midpoint Y value of the element's 'viewBox' with the midpoint Y value of the SVG viewport.
XMaxYMin = 3Align the MinX + Width of the element's 'viewBox' with the maximum X value of the SVG viewport. Align the MinY of the element's 'viewBox' with the smallest Y value of the SVG viewport.
XMidYMax = 8Align the midpoint X value of the element's 'viewBox' with the midpoint X value of the SVG viewport. Align the MinY + Height of the element's 'viewBox' with the maximum Y value of the SVG viewport.
XMidYMid = 5Align the midpoint X value of the element's 'viewBox' with the midpoint X value of the SVG viewport. Align the midpoint Y value of the element's 'viewBox' with the midpoint Y value of the SVG viewport.
XMidYMin = 2Align the midpoint X value of the element's 'viewBox' with the midpoint X value of the SVG viewport. Align the MinY of the element's 'viewBox' with the smallest Y value of the SVG viewport.
XMinYMax = 7Align the MinX of the element's 'viewBox' with the smallest X value of the SVG viewport. Align the MinY + Height of the element's 'viewBox' with the maximum Y value of the SVG viewport.
XMinYMid = 4Align the MinX of the element's 'viewBox' with the smallest X value of the SVG viewport. Align the midpoint Y value of the element's 'viewBox' with the midpoint Y value of the SVG viewport.
XMinYMin = 1Align the MinX of the element's 'viewBox' with the smallest X value of the SVG viewport. Align the MinY of the element's 'viewBox' with the smallest Y value of the SVG viewport.