BBCodeNodeAppendChild(String, String) Method
Adds a new child node at the end of this node's descendants
Namespace: DevCase.Core.DataProcessing.Html.BBCodeAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public virtual BBCodeNode AppendChild(
string tagName,
string attribute
)
Public Overridable Function AppendChild (
tagName As String,
attribute As String
) As BBCodeNode
Dim instance As BBCodeNode
Dim tagName As String
Dim attribute As String
Dim returnValue As BBCodeNode
returnValue = instance.AppendChild(tagName,
attribute)
public:
virtual BBCodeNode^ AppendChild(
String^ tagName,
String^ attribute
)
abstract AppendChild :
tagName : string *
attribute : string -> BBCodeNode
override AppendChild :
tagName : string *
attribute : string -> BBCodeNode
No code example is currently available or this language may not be supported.
- tagName String
-
The node's tag name. Mandatory.
- attribute String
-
The node's optional attribute.
This may be an empty string or null.
BBCodeNode
The newly created child node.