Class AudioDuckingStateChangedEventArgs

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.dll

Represents the event data for the DuckingStateChanged event, which is triggered when the ducking state of an audio stream changes. This class provides information about whether the audio stream is currently ducked or not.

C#
Copy
public class AudioDuckingStateChangedEventArgs : EventArgs
Inheritance
object
System.EventArgs
AudioDuckingStateChangedEventArgs

Properties

View Source

IsDucked

Gets a value indicating whether the audio stream is currently in a ducked state. This property reflects the status of the audio stream, where true signifies that the audio level has been lowered, and false indicates that the audio is at its normal level.

Declaration
C#
Copy
public bool IsDucked { get; }
Property Value
Type Description
bool

true if the state is ducked; otherwise, false.