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.
public class AudioDuckingStateChangedEventArgs : EventArgs
- Inheritance
-
objectSystem.EventArgsAudioDuckingStateChangedEventArgs
Properties
View SourceIsDucked
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
public bool IsDucked { get; }
Property Value
Type | Description |
---|---|
bool | true if the state is ducked; otherwise, false. |