CanRecordSounds Property

Applies To

Application Object.

Description

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

See Also

CanPlaySounds Property.

Example

This example determines whether the computer can record sound notes. If it can, it records a sound note into cell A1 on Sheet1.


If Application.CanRecordSounds = True Then
    With Worksheets("Sheet1").Range("A1").SoundNote
        .Delete
        .Record
    End With
End If