Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 773 Bytes

Excel.Shape.LinkFormat.md

File metadata and controls

39 lines (24 loc) · 773 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Shape.LinkFormat property (Excel)
vbaxl10.chm636129
vbaxl10.chm636129
Excel.Shape.LinkFormat
f364d08e-aafd-1555-34ee-f0682cde7e19
05/14/2019
medium

Shape.LinkFormat property (Excel)

Returns a LinkFormat object that contains linked OLE object properties. Read-only.

Syntax

expression.LinkFormat

expression A variable that represents a Shape object.

Example

This example updates all linked OLE objects on worksheet one.

For Each s In Worksheets(1).Shapes 
 If s.Type = msoLinkedOLEObject Then s.LinkFormat.Update 
Next

[!includeSupport and feedback]