LEADTOOLS Multimedia (Leadtools.Multimedia assembly) Send comments on this topic. | Back to Introduction | Help Version 17.0.3.22
Progress Event
See Also 
Leadtools.Multimedia Namespace > CaptureCtrl Class : Progress Event



Occurs periodically during a capture operation to notify of capture progress.

Syntax

Visual Basic (Declaration) 
Public Event Progress As ProgressEventHandler
Visual Basic (Usage)Copy Code
Dim instance As CaptureCtrl
Dim handler As ProgressEventHandler
 
AddHandler instance.Progress, handler
C# 
public event ProgressEventHandler Progress
C++/CLI 
public:
event ProgressEventHandler^ Progress

Event Data

The event handler receives an argument of type ProgressEventArgs containing data related to this event. The following ProgressEventArgs properties provide information specific to this event.

PropertyDescription
percent The percentage complete for convert progress notifications.
time The time elapsed for capture progress notifications.

Remarks

The event handler is passed a ProgressEventArgs containing the capture time.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also