Enum Align
Specifies the alignment methods
Namespace: FastReport.Export.Svg
Assembly: FastReport.dll
Syntax
public enum Align
Fields
| Name | Description |
|---|---|
| none | Do not force uniform scaling. Scale the graphic content of the given element non-uniformly if necessary such that the element's bounding box exactly matches the viewport rectangle. |
| xMaxYMax | Force uniform scaling. Align the min-x+width of the element's viewBox with the maximum X value of the viewport. Align the min-y+height of the element's viewBox with the maximum Y value of the viewport. |
| xMaxYMid | Force uniform scaling. Align the min-x+width of the element's viewBox with the maximum X value of the viewport. Align the midpoint Y value of the element's viewBox with the midpoint Y value of the viewport. |
| xMaxYMin | Force uniform scaling. Align the min-x+width of the element's viewBox with the maximum X value of the viewport. Align the min-y of the element's viewBox with the smallest Y value of the viewport. |
| xMidYMax | Force uniform scaling. Align the midpoint X value of the element's viewBox with the midpoint X value of the viewport. Align the min-y+height of the element's viewBox with the maximum Y value of the viewport. |
| xMidYMid | The default. Force uniform scaling. Align the midpoint X value of the element's viewBox with the midpoint X value of the viewport. Align the midpoint Y value of the element's viewBox with the midpoint Y value of the viewport. |
| xMidYMin | Force uniform scaling. Align the midpoint X value of the element's viewBox with the midpoint X value of the viewport. Align the min-y of the element's viewBox with the smallest Y value of the viewport. |
| xMinYMax | Force uniform scaling. Align the min-x of the element's viewBox with the smallest X value of the viewport. Align the min-y+height of the element's viewBox with the maximum Y value of the viewport. |
| xMinYMid | Force uniform scaling. Align the min-x of the element's viewBox with the smallest X value of the viewport. Align the midpoint Y value of the element's viewBox with the midpoint Y value of the viewport. |
| xMinYMin | Force uniform scaling. Align the min-x of the element's viewBox with the smallest X value of the viewport. Align the min-y of the element's viewBox with the smallest Y value of the viewport. |