Interface IVertex
Interface describing a graph vertex for the template dependency graph
Namespace: Firefly.CloudFormationParser.GraphObjects
Assembly: Firefly.CloudFormationParser.dll
Syntax
public interface IVertex
Properties
| Improve this Doc View SourceName
Gets the name of the vertex, which is the name assigned to the referenced template object.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
String | The name. |
Shape
Gets the shape with which to draw the vertex.
Declaration
GraphvizVertexShape Shape { get; }
Property Value
Type | Description |
---|---|
QuikGraph.Graphviz.Dot.GraphvizVertexShape | The shape. |
TemplateObject
Gets the template object associated with this vertex.
Declaration
ITemplateObject TemplateObject { get; }
Property Value
Type | Description |
---|---|
ITemplateObject | The template object. |