-
Notifications
You must be signed in to change notification settings - Fork 13
markdocelements IList
Denis Akopyan edited this page Mar 6, 2022
·
1 revision
Interface for list elements
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph MarkDoc.Elements
MarkDoc.Elements.IList[[IList]]
class MarkDoc.Elements.IList interfaceStyle;
MarkDoc.Elements.IElement[[IElement]]
class MarkDoc.Elements.IElement interfaceStyle;
end
subgraph MarkDoc.Elements.Extensions
MarkDoc.Elements.Extensions.IHasContent_1<System.Collections.Generic.IReadOnlyCollection_1[[IHasContent]]
MarkDoc.Elements.Extensions.IHasHeading[[IHasHeading]]
class MarkDoc.Elements.Extensions.IHasHeading interfaceStyle;
end
MarkDoc.Elements.IElement --> MarkDoc.Elements.IList
MarkDoc.Elements.Extensions.IHasContent_1<System.Collections.Generic.IReadOnlyCollection_1 --> MarkDoc.Elements.IList
MarkDoc.Elements.Extensions.IHasHeading --> MarkDoc.Elements.IList
| Type | Name | Methods |
|---|---|---|
ListType |
TypeList type |
get |
| Returns | Name |
|---|---|
IEnumerable |
Print(int indent)Prints element to a string |
Interface for list elements
-
IElement -
IHasContent<IReadOnlyCollection> -
IHasHeading
ListType
public abstract IEnumerable Print(int indent)| Type | Name | Description |
|---|---|---|
int |
indent | List indentation level |
Prints element to a string
Converted list
public abstract ListType Type { get }List type
Generated with MarkDoc