ICombinedFragment.DisplayName Property

 

Gets or sets the label of the combined fragment that appears on the sequence diagram. Also sets the InteractionOperator if you set it to a standard operator name such as Opt or Break.

Namespace:   Microsoft.VisualStudio.Uml.Interactions
Assembly:  Microsoft.VisualStudio.Uml.Interfaces (in Microsoft.VisualStudio.Uml.Interfaces.dll)

Syntax

string DisplayName { get; set; }
property String^ DisplayName {
    String^ get();
    void set(String^ value);
}
abstract DisplayName : string with get, set
Property DisplayName As String

Property Value

Type: System.String

Remarks

If it the user or program code sets this property to one of the values of InteractionOperatorKind, then InteractionOperator will be set to the same value. If it is set to another value, InteractionOperator is set to Alt.

If the value is set to Loop(n,m), InteractionOperator is set to Loop, and n and m are set as the max and min values of the first operand.

See Also

ICombinedFragment Interface
Microsoft.VisualStudio.Uml.Interactions Namespace

Return to top