Specifications
This property is read-only.
To Get:
BSTR sd = VideoReDo.OpenedFilename;
Returns the currently open filename. If a project is opened, the video files specified in the project file will be
returned. If the open video is a .Vlst, the .VLst filename is returned.
OutputPercentComplete
To Set:
This property is read-only.
To Get:
double d = VideoReDo.OutputPercentComplete;
This property only applies while output is in progress and returns a value from 0 to 99.9 representing how
much of the output file has been created. It should only be used as an estimate and should never be relied
upon to determine when the output routines have finished.
IsOutputInProgress should be used to check when
output has actually been completed.
PlotMask
To Set:
short pct = 25;
VideoReDo.PlotMask = pct; // Cover 25% of the image from toward each edge.
To Get:
short pct = VideoReDo.PlotMask
This property is used to get or set the value of the plot mask. The plot mask is used to cover the video image
starting from the center of the picture. A value of 0 means no plot mask is displayed. A value of 50% means
that the entire window is covered. Since the mask originates from the center of the window in each of 4
directions.
PreviewMode
To Set:
BOOL bPreviewMode = 1;
VideoReDo.PreviewMode = bPreviewMode; // Turn on Preview Mode.
To Get:
BOOL b = VideoReDo.PreviewMode;
If 1 (TRUE) preview mode is enabled otherwise its 0 (FALSE). Preview mode can be enabled or disabled by
setting this property.