Table of Contents

Struct DotEntityStyle

Namespace
Echo.Graphing.Serialization.Dot
Assembly
Echo.dll

Defines a tuple of style properties for an entity in a control flow graph.

public readonly struct DotEntityStyle
Inherited Members

Constructors

DotEntityStyle(string?, string?)

Creates a new style for an entity.

public DotEntityStyle(string? color, string? style)

Parameters

color string

The color of the entity.

style string

The line drawing style of the entity.

Properties

Color

Gets the color of the entity.

public string? Color { get; }

Property Value

string

Style

Gets the line drawing style of the entity.

public string? Style { get; }

Property Value

string