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)
|
Managed Extensions for C++ |
|
public: __gc __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