Enum DocumentPosition
- Namespace
- DotNetBrowser.Dom
- Assembly
- DotNetBrowser.dll
Enumeration of the document position that represent the relationship between two nodes within the Document.
[Flags]
public enum DocumentPosition
Fields
ContainedBy = 16The other node contains the reference node.
Contains = 8The reference node contains the other node.
Disconnected = 1The nodes are disconnected.
Following = 4The position of the other node follows the position of the reference node.
ImplementationSpecific = 32The node positions depend on the DOM implementation and cannot be compared.
Preceding = 2The position of the other node precedes the position of the reference node.
Unspecified = 0The position is not specified.