SetEchoOn method (Excel Graph)

Returns a Chart object.

Syntax

expression.SetEchoOn (EchoOn)

expression Required. An expression that returns a Chart object.

Parameters

Name Required/Optional Data type
EchoOn Optional Variant

Example

This example sets the echo on for the first object in the application.

Sub UseEchoOn() 
 
 Dim grpOne As Graph.Chart 
 
 Set grpOne = Application.ActiveSheet.OLEObjects(1).Object 
 
 grpOne.SetEchoOn 
 
End Sub

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.