Layer Constructors

Definition

Overloads

Layer()

Initializes a new instance of the Layer class.

Layer(String, String, String)

Initializes a new instance of the Layer class.

Layer()

Initializes a new instance of the Layer class.

public Layer ();
Public Sub New ()

Applies to

Layer(String, String, String)

Initializes a new instance of the Layer class.

public Layer (string width = default, string height = default, string label = default);
new Microsoft.Azure.Management.Media.Models.Layer : string * string * string -> Microsoft.Azure.Management.Media.Models.Layer
Public Sub New (Optional width As String = Nothing, Optional height As String = Nothing, Optional label As String = Nothing)

Parameters

width
String

The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in width as the input.

height
String

The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in height as the input.

label
String

The alphanumeric label for this layer, which can be used in multiplexing different video and audio layers, or in naming the output file.

Applies to