LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
RasterImageAllocateCallback Delegate
See Also 
Leadtools Namespace : RasterImageAllocateCallback Delegate



data
Parameters used when creating the RasterImage object.
Callback to use when new RasterImage objects are crated by LEADTOOLS.

Syntax

Visual Basic (Declaration) 
Public Delegate Function RasterImageAllocateCallback( _
   ByVal data As RasterImageAllocateData _
) As RasterExceptionCode
Visual Basic (Usage)Copy Code
Dim instance As New RasterImageAllocateCallback(AddressOf HandlerMethod)
C# 
public delegate RasterExceptionCode RasterImageAllocateCallback( 
   RasterImageAllocateData data
)
C++/CLI 
public delegate RasterExceptionCode RasterImageAllocateCallback( 
   RasterImageAllocateData^ data
)

Parameters

data
Parameters used when creating the RasterImage object.

Return Value

RasterExceptionCode.Success to continue creating the RasterImage object, any other value will cause the toolkit to throw RasterException with code equals to this RasterExceptionCode.

Example

Remarks

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7

See Also