![]() |
Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.6.22
|
Leadtools.Svg Assembly > Leadtools.Svg Namespace > SvgLoadOptions Class : LoadFlags Property |
public SvgLoadFlags LoadFlags {get; set;}
'Declaration
Public Property LoadFlags As SvgLoadFlags
'Usage
Dim instance As SvgLoadOptions Dim value As SvgLoadFlags instance.LoadFlags = value value = instance.LoadFlags
@property (nonatomic, assign) LTSvgLoadFlags loadFlags
public int getLoadFlags() public void setLoadFlags(int svgLoadFlags)
public: property SvgLoadFlags LoadFlags { SvgLoadFlags get(); void set ( SvgLoadFlags value); }
This member allows you to drop certain elements when loading SVG documents. For example, if you are only interested in the text elements of the SVG, then set LoadFlags to SvgLoadFlags.DropImages | SvgLoadFlags.DropShapes and the engine will not load these types of elements, preserving memory and system resources.
For an example, refer to SvgDocument.SortElements.