SVGDocument Methods

The SVGDocument type exposes the following members.

Methods
  NameDescription
Public methodAddEventListener(String, IEventListener)
This method allows the registration of event listeners on the event target.
(Inherited from EventTarget.)
Public methodAddEventListener(String, DOMEventHandler, Boolean)
This method allows the registration of event listeners on the event target.
(Inherited from EventTarget.)
Public methodAddEventListener(String, IEventListener, Boolean)
This method allows the registration of event listeners on the event target.
(Inherited from EventTarget.)
Public methodAppendChild
Adds the node newChild to the end of the list of children of this node. If the newChild is already in the tree, it is first removed.
(Inherited from Node.)
Public methodCloneNode
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. The duplicate node has no parent (parentNode is null) and no user data.
(Inherited from Node.)
Public methodCloneNode(Boolean)
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. The duplicate node has no parent (parentNode is null) and no user data.
(Inherited from Node.)
Public methodCreateAttribute
Creates an Attr of the given name.
(Inherited from Document.)
Public methodCreateAttributeNS
Creates an attribute of the given qualified name and namespace URI.
(Inherited from Document.)
Public methodCreateCDATASection
Creates a CDATASection node whose value is the specified string.
(Inherited from Document.)
Public methodCreateComment
Creates a Comment node given the specified string.
(Inherited from Document.)
Public methodCreateDocumentFragment
Creates an empty DocumentFragment object.
(Inherited from Document.)
Public methodCreateDocumentType
Creates a DocumentType node.
(Inherited from Document.)
Public methodCreateElement
Creates an element of the type specified. Note that the instance returned implements the Element interface, so attributes can be specified directly on the returned object.
(Inherited from Document.)
Public methodCreateElementNS
Creates an element of the given qualified name and namespace URI.
(Inherited from Document.)
Public methodCreateEntityReference
Creates an EntityReference object. In addition, if the referenced entity is known, the child list of the EntityReference node is made the same as that of the corresponding Entity node.
(Inherited from Document.)
Public methodCreateEvent
Creates an Event of a type supported by the implementation.
(Inherited from Document.)
Public methodCreateExpression
Creates a parsed XPath expression with resolved namespaces. This is useful when an expression will be reused in an application since it makes it possible to compile the expression string into a more efficient internal form and preresolve all namespace prefixes which occur within the expression.
(Inherited from Document.)
Public methodCreateNodeIterator(Node)
Create a new NodeIterator over the subtree rooted at the specified node.
(Inherited from Document.)
Public methodCreateNodeIterator(Node, Int64)
Create a new NodeIterator over the subtree rooted at the specified node.
(Inherited from Document.)
Public methodCreateNodeIterator(Node, Int64, INodeFilter)
Create a new NodeIterator over the subtree rooted at the specified node.
(Inherited from Document.)
Public methodCreateNSResolver
Adapts any DOM node to resolve namespaces so that an XPath expression can be easily evaluated relative to the context of the node where it appeared within the document. This adapter works like the DOM Level 3 method lookupNamespaceURI on nodes in resolving the namespaceURI from a given prefix using the current information available in the node's hierarchy at the time lookupNamespaceURI is called, also correctly resolving the implicit xml prefix.
(Inherited from Document.)
Public methodCreateProcessingInstruction
Creates a ProcessingInstruction node given the specified name and data strings.
(Inherited from Document.)
Public methodCreateTextNode
Creates a Text node given the specified string.
(Inherited from Document.)
Public methodCreateTreeWalker(Node)
Create a new TreeWalker over the subtree rooted at the specified node.
(Inherited from Document.)
Public methodCreateTreeWalker(Node, Int64)
Create a new TreeWalker over the subtree rooted at the specified node.
(Inherited from Document.)
Public methodCreateTreeWalker(Node, Int64, INodeFilter)
Create a new TreeWalker over the subtree rooted at the specified node.
(Inherited from Document.)
Public methodDispatchEvent
This method allows the dispatch of events into the implementations event model.
(Inherited from EventTarget.)
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from EventTarget.)
Protected methodDispose(Boolean)
Releases unmanaged and - optionally - managed resources.
(Inherited from Document.)
Public methodEquals (Inherited from Object.)
Public methodEvaluate
Evaluates an XPath expression string and returns a result of the specified type if possible.
(Inherited from Document.)
Protected methodFinalize
Finalizes an instance of the Node class.
(Inherited from Node.)
Public methodGetElementById
Returns the Element that has an ID attribute with the given value. If no such element exists, this returns null. If more than one element has an ID attribute with that value, what is returned is undefined.
(Inherited from Document.)
Public methodGetElementsByClassName
Returns a live NodeList object containing all the elements in the document that have all the classes specified in argument. http://www.w3.org/TR/dom/
(Inherited from Document.)
Public methodGetElementsByTagName
Returns a NodeList of all the Elements in document order with a given tag name and are contained in the document.
(Inherited from Document.)
Public methodGetElementsByTagNameNS
Returns a NodeList of all the Elements with a given local name and namespace URI in document order.
(Inherited from Document.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetOverrideStyle
This method is used to retrieve the override style declaration for a specified element and a specified pseudo-element.
Public methodGetType (Inherited from Object.)
Public methodHasAttributes
Returns whether this node (if it is an element) has any attributes
(Inherited from Node.)
Public methodHasChildNodes
Returns whether this node has any children.
(Inherited from Node.)
Public methodImportNode
Imports a node from another document to this document, without altering or removing the source node from the original document; this method creates a new copy of the source node.
(Inherited from Document.)
Public methodInsertBefore
Inserts the node before the existing child node child. If child is null, insert node at the end of the list of children. If child is a DocumentFragment object, all of its children are inserted, in the same order, before child. If the child is already in the tree, it is first removed.
(Inherited from Node.)
Public methodIsDefaultNamespace
This method checks if the specified namespaceURI is the default namespace or not.
(Inherited from Node.)
Public methodIsEqualNode
Tests whether two nodes are equal. This method tests for equality of nodes, not sameness (i.e., whether the two nodes are references to the same object) which can be tested with Node.isSameNode(). All nodes that are the same will also be equal, though the reverse may not be true.
(Inherited from Node.)
Public methodIsSameNode
Returns whether this node is the same node as the given one. This method provides a way to determine whether two Node references returned by the implementation reference the same object. When two Node references are references to the same object, even if through a proxy, the references may be used completely interchangeably, such that all attributes have the same values and calling the same DOM method on either reference always has exactly the same effect.
(Inherited from Node.)
Public methodLookupNamespaceURI
Look up the namespace URI associated to the given prefix, starting from this node.
(Inherited from Node.)
Public methodLookupPrefix
Look up the prefix associated to the given namespace URI, starting from this node. The default namespace declarations are ignored by this method. See Namespace Prefix Lookup for details on the algorithm used by this method.
(Inherited from Node.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodNavigate(String)
Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content.
(Inherited from Document.)
Public methodNavigate(RequestMessage)
Loads the document based on specified request object, replacing the previous content.
(Inherited from Document.)
Public methodNavigate(Url)
Loads the document at the specified Uniform Resource Locator (URL) into the current instance, replacing the previous content.
(Inherited from Document.)
Public methodNavigate(Stream, String)
Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content.
(Inherited from Document.)
Public methodNavigate(String, String)
Loads the document from specified content and using baseUri to resolve relative resources, replacing the previous content.
(Inherited from Document.)
Public methodNormalize
Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer [XPointer] lookups) that depend on a particular document tree structure are to be used. If the parameter "normalize-characters" of the DOMConfiguration object attached to the Node.ownerDocument is true, this method will also fully normalize the characters of the Text nodes.
(Inherited from Node.)
Public methodQuerySelector
Returns the first Element in document, which match selector
(Inherited from Document.)
Public methodQuerySelectorAll
Returns a NodeList of all the Elements in document, which match selector
(Inherited from Document.)
Public methodRemoveChild
Removes the child node indicated by oldChild from the list of children, and returns it.
(Inherited from Node.)
Public methodRemoveEventListener(String, IEventListener)
This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed.
(Inherited from EventTarget.)
Public methodRemoveEventListener(String, DOMEventHandler, Boolean)
This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed.
(Inherited from EventTarget.)
Public methodRemoveEventListener(String, IEventListener, Boolean)
This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed.
(Inherited from EventTarget.)
Public methodRenderTo
This method is used to print the contents of the current document to the specified device.
(Overrides DocumentRenderTo(IDevice).)
Public methodReplaceChild
Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node. If newChild is a DocumentFragment object, oldChild is replaced by all of the DocumentFragment children, which are inserted in the same order. If the newChild is already in the tree, it is first removed.
(Inherited from Node.)
Public methodSave(String)
Saves the document to local file specified by path. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files".
Public methodSave(Url)
Saves the document to local file specified by url. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files".
Public methodSave(String, SVGSaveFormat)
Saves the document to local file specified by path. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files".
Public methodSave(String, SVGSaveOptions)
Saves the document to local file specified by path. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files".
Public methodSave(Url, SVGSaveFormat)
Saves the document to local file specified by url. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files".
Public methodSave(Url, SVGSaveOptions)
Saves the document to local file specified by url. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files".
Public methodToString
Returns a String that represents this instance.
(Inherited from Node.)
Public methodWrite
Write a string of text to a document stream opened by open(). Note that the function will produce a document which is not necessarily driven by a DTD and therefore might be produce an invalid result in the context of the document.
(Inherited from Document.)
Public methodWriteLn
Write a string of text followed by a newline character to a document stream opened by open(). Note that the function will produce a document which is not necessarily driven by a DTD and therefore might be produce an invalid result in the context of the document
(Inherited from Document.)
See Also