The EditAcrossLayers property returns a value that indicates if editing objects on different layers is permitted. If this property is set to False, only objects on the active layer can be edited.
Examples:
The following VBA example allows you to edit objects on several different layers.
Sub Edit()
ActiveDocument.EditAcrossLayers = True
End Sub