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;
This data type is used within the L_SvgLoadOptions structure to control what elements in an SVG document are loaded.
Value | Meaning |
---|---|
L_SvgLoadFlags_Default | Default, load all elements. |
L_SvgLoadFlags_DropShapes | Drop all elements that are not image or text during the load. |
L_SvgLoadFlags_DropImages | Drop all image elements during load. |
L_SvgLoadFlags_DropText | 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.