SetEchoOn Method

Microsoft Graph Visual Basic

SetEchoOn Method

       

Returns a Chart object.

expression.SetEchoOn(EchoOn)

expression   Required. An expression that returns a Chart object.

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