Error processing SSI file
LEADTOOLS Image File Support (Leadtools.Codecs assembly)

Show in webframe

DropText Property








Gets or sets a value that indicates whether the text elements of the SVG should be dropped during load.
Syntax
public bool DropText {get; set;}
'Declaration
 
Public Property DropText As Boolean
'Usage
 
Dim instance As CodecsLoadSvgOptions
Dim value As Boolean
 
instance.DropText = value
 
value = instance.DropText
public bool DropText {get; set;}
@property (nonatomic, assign) BOOL dropText
public boolean getDropText()
public void setDropText(boolean value)
            
 <br/>get_DropText();<br/>set_DropText(value);<br/>Object.defineProperty('DropText'); 
public:
property bool DropText {
   bool get();
   void set (    bool value);
}

Property Value

true if text elements of the SVG should be dropped during load, otherwise; false. Default value is false.
Remarks

Creating an SVG document with text only is desired in certain scenarios. For example, if the application loads SVG document to parse the text values and store them in an external database for text search purposes, then setting the value of DropImages and DropShapes to true while leaving DropText as false will speed up the loading operation and elements not required will be discarded. This is especially useful if the original SVG document contains image elements which may use a lot of memory and disk space.

Example

For an example, refer to DropImages.

Requirements

Target Platforms

See Also

Reference

CodecsLoadSvgOptions Class
CodecsLoadSvgOptions Members

Error processing SSI file