VideoEdit Gold ActiveX Control

Processing Event

Description

Trigger when the save progress.

 

Syntax

Public Event Processing ( _
   ByVal iCurPos as double, _
   ByVal iDuration as double
)

 

Parameters

iCurPos
    current position of the file

iDuration
    total of duration

 

Example

[Visual Basic Syntax] (This example set progress bar value when save progress)
Private Sub VideoEdit1_Processing(ByVal iCurPos As Double, ByVal iDuration As Double)
If iCurPos < iDuration Then
     ProgressBar1.Value = iCurPos
End If
End Sub