BaseTreeAdaptorDupNode Method (Object) |
Duplicate a node. This is part of the factory;
override if you want another kind of node to be built.
Namespace:
Stimulsoft.Data.Expressions.Antlr.Runtime.Tree
Assembly:
Stimulsoft.Data (in Stimulsoft.Data.dll) Version: 2019.3.1.0
Syntaxpublic virtual Object DupNode(
Object treeNode
)
Public Overridable Function DupNode (
treeNode As Object
) As Object
Parameters
- treeNode
- Type: SystemObject
[Missing <param name="treeNode"/> documentation for "M:Stimulsoft.Data.Expressions.Antlr.Runtime.Tree.BaseTreeAdaptor.DupNode(System.Object)"]
Return Value
Type:
Object[Missing <returns> documentation for "M:Stimulsoft.Data.Expressions.Antlr.Runtime.Tree.BaseTreeAdaptor.DupNode(System.Object)"]
Implements
ITreeAdaptorDupNode(Object)
Remarks
I could use reflection to prevent having to override this
but reflection is slow.
See Also