title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
ShapeRange.Connector property (Excel) |
vbaxl10.chm640101 |
|
|
04562f53-97a0-3f53-79de-c2c660f5a48e |
05/14/2019 |
medium |
True if the specified shape is a connector. Read-only MsoTriState.
expression.Connector
expression An expression that returns a ShapeRange object.
This example deletes all connectors on myDocument.
Set myDocument = Worksheets(1)
With myDocument.Shapes
For i = .Count To 1 Step -1
With .Item(i)
If .Connector Then .Delete
End With
Next
End With
[!includeSupport and feedback]