In addition to the methods listed, you can also use the helper methods to test the return values for Tone class methods.
Method | Description |
---|---|
Pause | Generates a pause, allowing you to insert gaps or rests between audible tones. |
Play (int Pitch, int Duration) | Generates the tone as a simple monotonic sound based on a specified pitch and duration and the CurrentVolume property of the Tone instance. |
Play (int Pitch, int Duration, VOLUME vol) | Generates the tone as a simple monotonic sound based on a specified pitch, duration and volume. |
Play (int Pitch, VOLUME vol) | Generates the tone as a simple monotonic sound based on a specified pitch and volume and the CurrentDuration property of the Tone instance. |
Play (VOLUME vol) | Generates the tone as a simple monotonic sound based on a specified volume and the CurrentDuration and CurrentPitch properties of the Tone instance. |
Play | Generates the tone as a simple monotonic sound based on the CurrentPitch, CurrentDuration and CurrentVolume properties of the Tone instance. |
Rest | Generates a pause, allowing you to insert gaps or rests between audible tones. |