Class Arc
Represents an XBRL arc (relationship) used in linkbases.
public class Arc : XbrlItem
- Inheritance
-
Arc
- Inherited Members
Properties
Arcrole
The arcrole attribute (if any).
public required string? Arcrole { get; init; }
Property Value
From
The 'from' label of the arc.
public required string From { get; init; }
Property Value
Order
Order value for sorting child nodes.
public required double Order { get; init; }
Property Value
PreferredLabel
Preferred label value associated with this arc (if any).
public required string? PreferredLabel { get; init; }
Property Value
Priority
Priority value of the arc.
public required int Priority { get; init; }
Property Value
To
The 'to' label of the arc.
public required string To { get; init; }
Property Value
Use
The use attribute (optional/prohibited) of the arc.
public required Arc.UseKind Use { get; init; }
Property Value
Weight
Weight value for the arc (if any).
public required int? Weight { get; init; }
Property Value
- int?