MediaPlaybackCommandManagerFastForwardReceivedEventArgs.Handled Property

Definition

Gets or sets a value indicating whether the FastForwardReceived event has been handled.

public:
 property bool Handled { bool get(); void set(bool value); };
bool Handled();

void Handled(bool value);
public bool Handled { get; set; }
var boolean = mediaPlaybackCommandManagerFastForwardReceivedEventArgs.handled;
mediaPlaybackCommandManagerFastForwardReceivedEventArgs.handled = boolean;
Public Property Handled As Boolean

Property Value

Boolean

bool

True if the event has been handled; otherwise, false.

Remarks

If you mark the event as handled by setting this property to true, the System Media Transport Controls will not take any action for the Fast-forward command that initiated the event. If this property is false, the system will perform the default action based on the current FastForwardBehavior setting.

Applies to