This data type is used within the L_SvgLoadOptions structure to control what elements in an SVG document are loaded.
enum
{
L_SvgLoadFlags_Default = 0,
L_SvgLoadFlags_DropShapes = 1 << 0,
L_SvgLoadFlags_DropImages = 1 << 1,
L_SvgLoadFlags_DropText = 1 << 2,
};
typedef L_UINT L_SvgLoadFlags;
Default, load all elements.
Drop all elements that are not image or text during the load.
Drop all image elements during load.
Drop all text elements during load.
Loading flags used when loading the elements of an SVG.
Value for L_SvgLoadOptions.LoadFlags. These values can be ORed together.