AudioFileInputNode.EndTime Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the end time for the audio file input node, which determines when playback of the media content ends.
public:
property IReference<TimeSpan> ^ EndTime { IReference<TimeSpan> ^ get(); void set(IReference<TimeSpan> ^ value); };
IReference<TimeSpan> EndTime();
void EndTime(IReference<TimeSpan> value);
public System.Nullable<System.TimeSpan> EndTime { get; set; }
var iReference = audioFileInputNode.endTime;
audioFileInputNode.endTime = iReference;
Public Property EndTime As Nullable(Of TimeSpan)
Property Value
A value indicating the end time.
Remarks
EndTime defines where in the file playback ends. If EndTime is null, playback will end at the end of the file. EndTime can't be set to a time greater than the duration of the file. Attempting to do so will result in an invalid argument error.
Set the point within the media content at which playback starts with the StartTime property.