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
PositiondoubleThe position of the edge
RotateboolA boolean value indicating whether the label should be rotated
SidestringThe side of the edge
MoveModestringThe way the label can be moved
Offsetdouble?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; }