Leadtools.SpecialEffects Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also