-
Notifications
You must be signed in to change notification settings - Fork 13
markdocelements IDiagram
Denis Akopyan edited this page Mar 6, 2022
·
1 revision
Interface for diagram elements
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph MarkDoc.Elements
MarkDoc.Elements.IDiagram[[IDiagram]]
class MarkDoc.Elements.IDiagram interfaceStyle;
MarkDoc.Elements.IElement[[IElement]]
class MarkDoc.Elements.IElement interfaceStyle;
end
MarkDoc.Elements.IElement --> MarkDoc.Elements.IDiagram
| Returns | Name |
|---|---|
ValueTask |
ToExternalFile(string directory)Exports the diagram to an external file |
Interface for diagram elements
public abstract ValueTask ToExternalFile(string directory)| Type | Name | Description |
|---|---|---|
string |
directory | Path to the directory to export to |
Exports the diagram to an external file
Generated with MarkDoc