CanPlaySounds Property

Applies To

Application Object.

Description

True if the computer can play sound notes. Read-only.

See Also

CanRecordSounds Property.

Example

This example determines whether the computer can play sound notes. If it can, it plays the sound note in cell A1 on Sheet1.


If Application.CanPlaySounds = True Then
    Worksheets("Sheet1").Range("A1").SoundNote.Play
End If