LinkShape.GridSize Property

Gets or sets the size of the grid to which the link’s vertices snap. If 0.0, no grid is used.

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 Overrides Property GridSize As Double
public override double GridSize { get; set; }
public:
virtual property double GridSize {
    double get () override;
    void set (double value) override;
}
abstract GridSize : float with get, set 
override GridSize : float with get, set
override function get GridSize () : double 
override function set GridSize (value : double)

Property Value

Type: Double

Remarks

After the user moves a line segment, the position is adjusted so that X or Y coordinates are a multiple of the GridSize. To switch off this feature, set GridSize to 0.0 or override this property to return 0.0. The default value is the GridSize of the parent shape or diagram. It is therefore usually only necessary to set or override the GridSize of the diagram.

.NET Framework Security

See Also

Reference

LinkShape Class

Microsoft.VisualStudio.Modeling.Diagrams Namespace