Struct FieldOfView

Definition

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

Represents properties for the spherical video field of view.

C#
Copy
public struct FieldOfView

Constructors

View Source

FieldOfView(Int32, Int32)

Initializes a new instance of the struct with the specified field of view for the spherical video.

Declaration
C#
Copy
public FieldOfView(int horizontalDegrees, int verticalDegrees)
Parameters
Type Name Description
Int32 horizontalDegrees

The horizontal field of view to display in degrees.

Int32 verticalDegrees

The vertical field of view to display in degrees.

Remarks

Valid range is 1-360 degrees. Default value is 120 degrees.

API Level: 5

Properties

View Source

HorizontalDegrees

Gets or sets the HorizontalDegrees.

Declaration
C#
Copy
public int HorizontalDegrees { get; set; }
Property Value
Type Description
Int32
API Level: 5
View Source

VerticalDegrees

Gets or sets the VerticalDegrees.

Declaration
C#
Copy
public int VerticalDegrees { get; set; }
Property Value
Type Description
Int32
API Level: 5

Methods

View Source

ToString()

Returns a string that represents the current object.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
System.String

A string that represents the current object.

Overrides
System.ValueType.ToString()
API Level: 5