CombinedFragmentExtensions.CreateInteractionOperand Method (ICombinedFragment, IInteractionOperand, Boolean)
Insert a new Interaction Operand in the Combined Fragment.
Namespace: Microsoft.VisualStudio.ArchitectureTools.Extensibility.Uml
Assembly: Microsoft.VisualStudio.ArchitectureTools.Extensibility (in Microsoft.VisualStudio.ArchitectureTools.Extensibility.dll)
Syntax
public static IInteractionOperand CreateInteractionOperand(
this ICombinedFragment parent,
IInteractionOperand interactionOperand,
bool createNewAfter
)
public:
[ExtensionAttribute]
static IInteractionOperand^ CreateInteractionOperand(
ICombinedFragment^ parent,
IInteractionOperand^ interactionOperand,
bool createNewAfter
)
static member CreateInteractionOperand :
parent:ICombinedFragment *
interactionOperand:IInteractionOperand *
createNewAfter:bool -> IInteractionOperand
<ExtensionAttribute>
Public Shared Function CreateInteractionOperand (
parent As ICombinedFragment,
interactionOperand As IInteractionOperand,
createNewAfter As Boolean
) As IInteractionOperand
Parameters
interactionOperand
Type: Microsoft.VisualStudio.Uml.Interactions.IInteractionOperandThe new operand will be inserted immediately before or after this one.
createNewAfter
Type: System.BooleanIf true, the new operand will be inserted after the existing operand. If false, the new operand will be inserted before the existing operand.
Return Value
Type: Microsoft.VisualStudio.Uml.Interactions.IInteractionOperand
The new interaction operand.
See Also
CombinedFragmentExtensions Class
Microsoft.VisualStudio.ArchitectureTools.Extensibility.Uml Namespace
Return to top