Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns a list given a model element. Used for DomainPath traversal methods.
Namespace:  Microsoft.VisualStudio.Modeling.Diagrams
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (in Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0.dll)
Syntax
'Declaration
Public Delegate Function ElementListGetter ( _
    startElement As ModelElement _
) As IList
public delegate IList ElementListGetter(
    ModelElement startElement
)
public delegate IList^ ElementListGetter(
    ModelElement^ startElement
)
type ElementListGetter = 
    delegate of  
        startElement:ModelElement -> IList
JScript does not support delegates.
Parameters
- startElement 
 Type: Microsoft.VisualStudio.Modeling.ModelElement- The model element from which to start. 
Return Value
Type: System.Collections.IList