Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 865 Bytes

Excel.ShapeRange.Connector.md

File metadata and controls

44 lines (29 loc) · 865 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ShapeRange.Connector property (Excel)
vbaxl10.chm640101
vbaxl10.chm640101
Excel.ShapeRange.Connector
04562f53-97a0-3f53-79de-c2c660f5a48e
05/14/2019
medium

ShapeRange.Connector property (Excel)

True if the specified shape is a connector. Read-only MsoTriState.

Syntax

expression.Connector

expression An expression that returns a ShapeRange object.

Example

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]