'Declaration
Public Function DisplayFromMemory( _ ByVal hMem As IntPtr, _ ByVal Length As Integer _ ) As GdPictureStatus
public GdPictureStatus DisplayFromMemory( IntPtr hMem, int Length )
public function DisplayFromMemory( hMem: IntPtr; Length: Integer ): GdPictureStatus;
public function DisplayFromMemory( hMem : IntPtr, Length : int ) : GdPictureStatus;
public: GdPictureStatus DisplayFromMemory( IntPtr hMem, int Length )
public: GdPictureStatus DisplayFromMemory( IntPtr hMem, int Length )
Parameters
- hMem
- A pointer to the area of memory, which stores the document data. This pointer must be properly initialized and it must be disposed of by the user as well.
- Length
- The length of the specified memory area, in bytes.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.