This data type is used within the L_SvgSortOptions structure to control sort options when sorting elements in an SVG document.
enum
{
L_SvgSortFlags_Default = 0,
L_SvgSortFlags_LeftToRight = 0,
L_SvgSortFlags_RightToLeft = 1 << 0,
L_SvgSortFlags_TopToBottom = 0,
L_SvgSortFlags_BottomToTop = 1 << 1,
};
typedef L_UINT L_SvgSortFlags;
Default (left to right and top to bottom).
Left to right.
Right to left.
Top to bottom.
Bottom to top.
Sorting flags used when enumerating the elements of an SVG.
Value for L_SvgSortOptions.SortFlags. These values can be ORed together.