IClassDiagram Interface

Represents a UML class diagram, which can display classes, interfaces, enumerations, packages, and the relationships between them. The diagram itself does not form part of the model. It contains IShape objects that represent views of the model elements. Each model element, such as a UML class, may be represented by several IShapes, which may be on different diagrams.

Namespace:  Microsoft.VisualStudio.ArchitectureTools.Extensibility.Presentation
Assembly:  Microsoft.VisualStudio.ArchitectureTools.Extensibility (in Microsoft.VisualStudio.ArchitectureTools.Extensibility.dll)

Syntax

'Declaration
Public Interface IClassDiagram _
    Inherits IDiagram, IShape
public interface IClassDiagram : IDiagram, 
    IShape
public interface class IClassDiagram : IDiagram, 
    IShape
type IClassDiagram =  
    interface
        interface IDiagram
        interface IShape
    end
public interface IClassDiagram extends IDiagram, IShape

The IClassDiagram type exposes the following members.

Properties

  Name Description
Public property ChildShapes Shapes that are contained within this shape. For example, the attribute and operation rows of a class shape; class shapes contained inside a package shape; ports and parts inside a component. For each ChildShape, ParentShape == this. (Inherited from IShape.)
Public property Color Gets or sets the color of the shape. (Inherited from IShape.)
Public property Diagram The diagram that contains this shape. (Inherited from IShape.)
Public property FileName The path of the modeling project file on which the diagram is stored. This is the name of the principal of the two files. (Inherited from IDiagram.)
Public property Height (Inherited from IShape.)
Public property ModelStore The UML model store which contains the diagram and the model that it shows. (Inherited from IDiagram.)
Public property Name The name of the diagram. It is not always the same as the file name. (Inherited from IDiagram.)
Public property ParentShape The shape that contains this shape, or null. If ParentShape is not null, this shape is a member of ParentShape.ChildShapes. (Inherited from IShape.)
Public property SelectedShapes The collection of shapes that are currently selected. If no individual shape is selected, the collection will contain the diagram as its only member. If other shapes are selected, the diagram will not appear in the collection. (Inherited from IDiagram.)
Public property TypeName A string indicating what kind of diagram this is, such as "ComponentDiagram". (Inherited from IDiagram.)
Public property Width (Inherited from IShape.)
Public property XPosition (Inherited from IShape.)
Public property YPosition (Inherited from IShape.)

Top

Methods

  Name Description
Public method Delete Removes the shape from the diagram. This might or might not remove from the model the element that the shape displays. For example, removing a class shape from a class diagram does not remove the UML class from the model. (Inherited from IShape.)
Public method Display<T> Display an element on the diagram. The element may be an instance of IClass, IInterface, IEnumeration, IPackage, or IComment. Creates an IShape whose Element is element.
Public method EnsureVisible (Inherited from IDiagram.)
Public method GetObject<T> Gets the model element represented by this shape. Supply the type of the result that you want. (Inherited from IShape.)
Public method Move Changes the position and size of the shape. (Inherited from IShape.)
Public method SelectShapes Sets the current selection to the given collection of shapes, and sets the Selection property. This does not activate the window that displays the diagram. (Inherited from IDiagram.)
Public method ToIShape<T> Cast to a type that specifies the type of the element that the shape represents. (Inherited from IShape.)

Top

Extension Methods

  Name Description
Public Extension Method GetChildShapes<T> Get child shapes that display the specified type of model element. (Defined by PresentationHelpers.)
Public Extension Method GetElement The model element that this shape represents. (Defined by IShapeExtensions.)
Public Extension Method GetSelectedShapes<T> Get all the selected shapes that display UML model elements of the specified type. (Defined by PresentationHelpers.)
Public Extension Method SelectShapes Select a collection of shapes on the diagram. The shapes must be selectable. The diagram's SelectedShapes property will be updated. (Defined by PresentationHelpers.)

Top

Remarks

For more information, see the following topics:

See Also

Reference

Microsoft.VisualStudio.ArchitectureTools.Extensibility.Presentation Namespace