LEADTOOLS Special Effects (Leadtools.SpecialEffects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
SpecialEffectsProgress Delegate
See Also 
Leadtools.SpecialEffects Namespace : SpecialEffectsProgress Delegate



percent
An integer from 0 to 100 that indicates the percent completion of the method that uses the delegate.
Lets you update a status bar or interrupt the calling function's operation.

Syntax

Visual Basic (Declaration) 
Public Delegate Function SpecialEffectsProgress( _
   ByVal percent As Integer _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As New SpecialEffectsProgress(AddressOf HandlerMethod)
C# 
public delegate bool SpecialEffectsProgress( 
   int percent
)
C++/CLI 
public delegate bool SpecialEffectsProgress( 
   int percent
)

Parameters

percent
An integer from 0 to 100 that indicates the percent completion of the method that uses the delegate.

Return Value

true to continue; false to interrupt.

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