This method starts the video.
[Visual Basic]
Public Function Start(ByVal mode As DisplayMode) As Boolean
Public Function Start(ByVal mode As DisplayMode, ByVal rate As Double) As Boolean
[C#]
public bool Start(DisplayMode mode);
public bool Start(DisplayMode mode, double rate);

Parameters

mode

The display mode

rate

The playing speed

Return Value

Returns True if successful, otherwise returns False

Explanation

The mode parameter passes the type of display mode to the output control

The rate parameter passes the playing speed. Normal speed is 1.0. 0 or a minus value are not possible. If no value is set in the rate parameter then the speed will be 1.0. Sometimes, when replaying a file (for example a WMV format file), the rate value may not be enabled. In this case the rate will be 1.0.

If successful, the State property will be changed. If unsuccessful, then "Step", "ETC" or "Value" will be set in the ErrorStatus property.

To start the video from a particular location use the StartFrom method to define the start location in seconds.

See Also

Play Members | Newtone.ImageKit.Wpf.WebCamera.Play

 

The ImageKit WPF is created by Newtone Corporation