NodeShape.ResizableSides Property

Gets the sides of the shape that the user can resize.

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

Syntax

'Declaration
Public Overridable ReadOnly Property ResizableSides As NodeShape.NodeSides
public virtual NodeShape.NodeSides ResizableSides { get; }
public:
virtual property NodeShape::NodeSides ResizableSides {
    NodeShape::NodeSides get ();
}
abstract ResizableSides : NodeShape.NodeSides with get 
override ResizableSides : NodeShape.NodeSides with get
function get ResizableSides () : NodeShape.NodeSides

Property Value

Type: Microsoft.VisualStudio.Modeling.Diagrams.NodeShape.NodeSides
The sides of the shape that the user can resize.

Remarks

By default, the user can resize all sides of a shape.

Examples

public override DslDiagrams.NodeShape.NodeSides ResizableSides
{
    get
    {
        return DslDiagrams.NodeShape.NodeSides.None;
    }
}

.NET Framework Security

See Also

Reference

NodeShape Class

Microsoft.VisualStudio.Modeling.Diagrams Namespace