bool Paused { get; set; }

robot_2Generated
code_blocksInput

Description

The Paused property of the SoundHandle class indicates whether the sound is currently paused. This property returns a boolean value, where true means the sound is paused, and false means it is not.

Usage

To check if a sound is paused, access the Paused property on an instance of SoundHandle. This can be useful for managing sound playback states in your application.

Example

// Example of using the Paused property
SoundHandle soundHandle = new SoundHandle();

// Check if the sound is paused
if (soundHandle.Paused)
{
    // The sound is paused
    // Perform actions related to paused state
}
else
{
    // The sound is not paused
    // Perform actions related to playing state
}