TimedTextLine TimedTextLine TimedTextLine TimedTextLine Class

Definition

Represents a line of text that is displayed with a TimedTextCue.

public : sealed class TimedTextLine : ITimedTextLinepublic sealed class TimedTextLine : ITimedTextLinePublic NotInheritable Class TimedTextLine Implements ITimedTextLine// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Constructors

TimedTextLine() TimedTextLine() TimedTextLine() TimedTextLine()

Initializes a new instance of the TimedTextLine class.

public : TimedTextLine()public TimedTextLine()Public Sub New()// You can use this method in JavaScript.

Properties

Subformats Subformats Subformats Subformats

Gets a list of TimedTextSubformat objects that provide formatting for substrings within the TimedTextLine.

public : IVector<TimedTextSubformat> Subformats { get; }public IList<TimedTextSubformat> Subformats { get; }Public ReadOnly Property Subformats As IList<TimedTextSubformat>// You can use this property in JavaScript.
Value
IVector<TimedTextSubformat> IList<TimedTextSubformat> IList<TimedTextSubformat> IList<TimedTextSubformat>

A list of TimedTextSubformat objects that provide formatting for substrings within the timed text line.

Text Text Text Text

Gets or sets the text content of the TimedTextLine.

public : PlatForm::String Text { get; set; }public string Text { get; set; }Public ReadWrite Property Text As string// You can use this property in JavaScript.
Value
PlatForm::String string string string

The text content of the TimedTextLine.

See Also