This documentation is archived and is not being maintained.
Image.GetThumbnailImageAbort Delegate
.NET Framework 1.1
Provides a callback method for determining when the GetThumbnailImage method should prematurely cancel execution.
[Visual Basic] <Serializable> Public Delegate Function Sub Image.GetThumbnailImageAbort() As _ Boolean [C#] [Serializable] public delegate bool Image.GetThumbnailImageAbort(); [C++] [Serializable] public __gc __delegate bool Image.GetThumbnailImageAbort();
[JScript] In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.
Parameters [Visual Basic, C#, C++]
The declaration of your callback method must have the same parameters as the Image.GetThumbnailImageAbort delegate declaration.
Return Value
This method returns true if it decides that the GetThumbnailImage method should prematurely stop execution; otherwise, it returns false.
Requirements
Namespace: System.Drawing
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Drawing (in System.Drawing.dll)
See Also
Show: