Class EdgeLabelPlacement
Denotes the placement of a label relative to an edge
public record EdgeLabelPlacement : IEquatable<EdgeLabelPlacement>
- Inheritance
-
EdgeLabelPlacement
- Implements
- Inherited Members
Constructors
EdgeLabelPlacement(double, bool, string, string, double?)
Denotes the placement of a label relative to an edge
public EdgeLabelPlacement(double Position, bool Rotate, string Side, string MoveMode, double? Offset)
Parameters
Position
doubleThe position of the edge
Rotate
boolA boolean value indicating whether the label should be rotated
Side
stringThe side of the edge
MoveMode
stringThe way the label can be moved
Offset
double?An offset to the next node or edge
Properties
MoveMode
The way the label can be moved
public string MoveMode { get; init; }
Property Value
Offset
An offset to the next node or edge
public double? Offset { get; init; }
Property Value
Position
The position of the edge
public double Position { get; init; }
Property Value
Rotate
A boolean value indicating whether the label should be rotated
public bool Rotate { get; init; }
Property Value
Side
The side of the edge
public string Side { get; init; }