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.
Gets the sides of the shape that the user can resize.
Namespace: Microsoft.VisualStudio.Modeling.Diagrams
Assembly: Microsoft.VisualStudio.Modeling.Sdk.Diagrams (in Microsoft.VisualStudio.Modeling.Sdk.Diagrams.dll)
Syntax
'Declaration
Public Overridable ReadOnly Property ResizableSides As NodeShape.NodeSides
'Usage
Dim instance As NodeShape
Dim value As NodeShape.NodeSides
value = instance.ResizableSides
public virtual NodeShape.NodeSides ResizableSides { get; }
public:
virtual property NodeShape.NodeSides ResizableSides {
NodeShape.NodeSides get ();
}
public 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.