Table of Contents

Class VideoStartingEventArgs

Namespace
Ranorex.Core.Reporting
Assembly
Ranorex.Core.dll

Event arguments for the VideoStarting event. Allows override if recording should be started and setting a custom file name.

public class VideoStartingEventArgs : EventArgs
Inheritance
VideoStartingEventArgs
Inherited Members

Constructors

VideoStartingEventArgs()

public VideoStartingEventArgs()

Properties

RelatedActivity

The activity in the current TestReport related to this video (e.g. a TestCaseActivity)

public Activity RelatedActivity { get; set; }

Property Value

Activity

StartVideo

Determines whether the video recording should actually start.

public bool StartVideo { get; set; }

Property Value

bool

VideoFileName

The file name for the newly recorded video. A relative path is based on the report location.

public string VideoFileName { get; set; }

Property Value

string

Remarks

The file is overwritten if it already exists, and the specified directory is created if it doesn't.