Previous Document Next Document

Object Model Reference : Classes : S : Shape : Properties : Shape.Locked


Shape.Locked

Property Locked As Boolean

Description

Member of Shape

The Locked property determines whether the position of a shape is locked on a page.

VBA example

The following VBA example calculates how many shapes are locked on the active page in the current document.

Sub Test()
 Dim s As Shape
 Dim n As Long
 n = 0
 For Each s In ActivePage.Shapes
  If s.Locked Then n = n + 1
 Next s
 MsgBox "There are " & n & " shapes locked on the current page"
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.