Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.03 KB

Excel.ShapeRange.Nodes.md

File metadata and controls

44 lines (27 loc) · 1.03 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ShapeRange.Nodes property (Excel)
vbaxl10.chm640111
vbaxl10.chm640111
Excel.ShapeRange.Nodes
6005d3f3-2c08-f539-87fc-51425ce81e0e
05/14/2019
medium

ShapeRange.Nodes property (Excel)

Returns a ShapeNodes collection that represents the geometric description of the specified shape.

Syntax

expression.Nodes

expression A variable that represents a ShapeRange object.

Remarks

This property applies to Shape or ShapeRange objects that represent freeform drawings.

Example

This example adds a smooth node with a curved segment after node four in shape three on myDocument. Shape three must be a freeform drawing with at least four nodes.

Set myDocument = Worksheets(1) 
With myDocument.Shapes(3).Nodes 
 .Insert 4, msoSegmentCurve, msoEditingSmooth, 210, 100 
End With

[!includeSupport and feedback]