Previous Document Next Document
Application.ActiveLayer

Property ActiveLayer As Layer

Member of Application

The ActiveLayer property returns the active Layer on the active page in the active document.

The ActiveLayer property returns a read-only value.

The following code example creates an ellipse on the active layer in the current document.

Sub LayerActive() 
 ActiveLayer.CreateEllipse 3, 3, 2, 1 
 ActiveDocument.Selection.Shapes(1).Fill.UniformColor.CMYKAssign 
100, 0, 100, 0 
 'Fills the ellipse green 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.