Class PlayerDisplaySettings

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.MediaPlayer.dll
API Level:
3

Provides a means to configure display settings for video Player.

C#
Copy
public class PlayerDisplaySettings : object
Inheritance
PlayerDisplaySettings

Constructors

View Source

PlayerDisplaySettings(Player)

This constructor supports the product infrastructure and is not intended to be used directly from application code.

Declaration
C#
Copy
protected PlayerDisplaySettings(Player player)
Parameters
Type Name Description
Player player

The handle for the media player

API Level: 4

Properties

View Source

IsVisible

Gets or sets the value indicating whether the display is visible.

Declaration
C#
Copy
public bool IsVisible { get; set; }
Property Value
Type Description
Boolean

true if the display is visible; otherwise false.

API Level: 3
View Source

Mode

Gets or sets the PlayerDisplayMode.

Declaration
C#
Copy
public PlayerDisplayMode Mode { get; set; }
Property Value
Type Description
PlayerDisplayMode
API Level: 3
View Source

Player

Gets the player of this instance.

Declaration
C#
Copy
protected Player Player { get; }
Property Value
Type Description
Player

The Player of this PlayerDisplaySettings instance.

API Level: 4
View Source

Rotation

Gets or sets the rotation of the display.

Declaration
C#
Copy
public Rotation Rotation { get; set; }
Property Value
Type Description
Rotation

Rotate0, Rotate90, Rotate180, Rotate270.

API Level: 3

Methods

View Source

SetRoi(Rectangle)

Sets the roi(region of interest).

Declaration
C#
Copy
public void SetRoi(Rectangle roi)
Parameters
Type Name Description
Rectangle roi

The region.

Remarks

the roi can be set before setting Roi. (since 4.0)

API Level: 3

Extension Methods