Viewer.LayerName property (Visio Viewer)

Gets the name of the layer at the specified index in the drawing open in Microsoft Visio Viewer. Read-only.

Syntax

expression.LayerName (LayerIndex)

expression An expression that returns a Viewer object.

Parameters

Name Required/Optional Data type Description
LayerIndex Required Long The index of the layer in the collection of layers in the drawing open in Visio Viewer.

Return value

String

Remarks

The collection of layers is one-based, so the index of the first layer in the collection is 1. If there are no layers in the drawing, or if there is no layer at index position LayerIndex, the LayerName property returns nothing.

Example

The following code gets the name of all the layers in the drawing open in Visio Viewer.

Dim intCounter As Integer

For intCounter = 1 To vsoViewer.LayerCount

    Debug.Print vsoViewer.LayerName(intCounter)

Next intCounter

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.