SVGDocument Constructor (Url, Configuration) |
Initializes a new instance of the
SVGDocument class. Constructor works synchronously, it waits for loading of all the external resources (images, scripts, etc.).
To load document asynchronously use method
Navigate(Url) or its overloads.
Or you can disable loading of some external resources by setting appropriate flags in
Security.
Namespace: Aspose.Html.Dom.SvgAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxpublic SVGDocument(
Url url,
Configuration configuration
)
Public Sub New (
url As Url,
configuration As Configuration
)
public:
SVGDocument(
Url^ url,
Configuration^ configuration
)
new :
url : Url *
configuration : Configuration -> SVGDocument
Parameters
- url
- Type: Aspose.HtmlUrl
The document URL. - configuration
- Type: Aspose.HtmlConfiguration
The configuration.
See Also