MarkdownUtilitiesGetChildList Method |
Gets the children of a markdown object. null is returned if no children can be found.
Namespace: Altaxo.TextAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static IReadOnlyList<MarkdownObject>? GetChildList(
this MarkdownObject parent
)
Parameters
- parent MarkdownObject
- The markdown object from which to get the children.
Return Value
IReadOnlyListMarkdownObjectThe children of the given markdown object, or
null.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
MarkdownObject. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also