Share via


Diagram.CreatableSwimLaneSubjects Property

Gets the list of domain classes that are linked to swimlane shapes.

Namespace:  Microsoft.VisualStudio.Modeling.Diagrams
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.Diagrams (in Microsoft.VisualStudio.Modeling.Sdk.Diagrams.dll)

Syntax

'Declaration
Public Overridable ReadOnly Property CreatableSwimLaneSubjects As IEnumerable(Of DomainClassInfo)
'Usage
Dim instance As Diagram 
Dim value As IEnumerable(Of DomainClassInfo)

value = instance.CreatableSwimLaneSubjects
public virtual IEnumerable<DomainClassInfo> CreatableSwimLaneSubjects { get; }
public:
virtual property IEnumerable<DomainClassInfo^>^ CreatableSwimLaneSubjects {
    IEnumerable<DomainClassInfo^>^ get ();
}
public function get CreatableSwimLaneSubjects () : IEnumerable<DomainClassInfo>

Property Value

Type: System.Collections.Generic.IEnumerable<DomainClassInfo>
The list of domain classes that are linked to swimlane shapes.

Examples

public override void CreateConnection(DslDiagrams::ShapeElement sourceShapeElement, DslDiagrams::ShapeElement targetShapeElement, DslDiagrams::PaintFeedbackArgs paintFeedbackArgs)
{
    System.Collections.Generic.Dictionary<object, object> contextInfo = sourceShapeElement.Store.TransactionManager.CurrentTransaction.Context.ContextInfo;
    DslDiagrams::MouseAction activeMouseAction = sourceShapeElement.Diagram.ActiveDiagramView.ActiveMouseAction;
    contextInfo.Add(Constant.MouseToPointKey, activeMouseAction.CurrentPoint);
    contextInfo.Add(Constant.MouseFromPointKey, activeMouseAction.MouseDownPoint);                               

    base.CreateConnection(sourceShapeElement, targetShapeElement, paintFeedbackArgs);
}

.NET Framework Security

See Also

Reference

Diagram Class

Diagram Members

Microsoft.VisualStudio.Modeling.Diagrams Namespace