For incremental loading, this method is invoked when the specified image has been loaded and decompressed as fully as is possible.
Original signature is '- (void)image:(NSImage *)image didLoadRepresentation:(NSImageRep *)rep withStatus:(NSImageLoadStatus)status'
Available in Mac OS X v10.2 and later.

C# | Visual Basic | Visual C++ |
public delegate void ImageDidLoadRepresentationWithStatusEventHandler( NSImage image, NSImageRep rep, NSImageLoadStatus status )
Public Delegate Sub ImageDidLoadRepresentationWithStatusEventHandler ( _ image As NSImage, _ rep As NSImageRep, _ status As NSImageLoadStatus _ )
public delegate void ImageDidLoadRepresentationWithStatusEventHandler( NSImage^ image, NSImageRep^ rep, NSImageLoadStatus status )

- image (NSImage)
- The image object whose contents are being loaded.
- rep (NSImageRep)
- The image representation object that loaded the image data.
- status (NSImageLoadStatus)
- The status of the load operation. For a list of possible values, see NSImageLoadStatus in NSImage Class Reference.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)