See Also Examples Applies To
Returns a picture object from a GdPicture image handle.
Syntax
object.GetPictureFromGdPictureImage (nimageID)
The GetPictureFromGdPictureImage syntax has these parts:
| Part | Description |
| object | Required. An object expression that evaluates to an object in the Applies To list. |
| nimageID | Required. Long. GdPicture Image handle. Image to export. |
Returns
StdPicture. A new picture object wich will contains the specified image data.
Remarks
Call the GetStat() function to see if this function success.
DO NOT FORGET to release the StdPicture object with the DeletePictureObject() function.
Category
Export Image
Visual Basic Sample
Dim oPicture As Picture
Set oPicture = object.GetPictureFromGdPictureImage(object.GetNativeImage)