SoundNote Property

Applies To

Range Object.

Description

Accessor. Returns a SoundNote object that represents the sound note associated with the top left cell in the specified range. Read-only.

Remarks

Your computer may require optional hardware to record and play sound notes.

See Also

Import Method, Play Method, Record Method.

Example

This example deletes the sound note in cell A1 on Sheet1, records a new sound note for the same cell, and then plays the sound note.


With Worksheets("Sheet1").Range("A1").SoundNote
    .Delete
    .Record
    .Play
End With