GdPicture image identifier.
The page number in the range [1 - GetPageCount()].
When True, only image properties, metadata and embedded thumbnail will be loaded. This parameter is particularly useful to obtain image information's without decoding it. Be careful not to call subsequent methods that need to access pixel data if this parameter is set to True





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / SelectPage Method / SelectPage(Int32,Int32,Boolean) Method

SelectPage(Int32,Int32,Boolean) Method

In This Topic
Selects a page in a GdPicture image.
Syntax
'Declaration
 
Public Overloads Function SelectPage( _
   ByVal ImageID As Integer, _
   ByVal PageNo As Integer, _
   ByVal DirectAccess As Boolean _
) As GdPictureStatus
public GdPictureStatus SelectPage( 
   int ImageID,
   int PageNo,
   bool DirectAccess
)
public function SelectPage( 
    ImageID: Integer;
    PageNo: Integer;
    DirectAccess: Boolean
): GdPictureStatus; 
public function SelectPage( 
   ImageID : int,
   PageNo : int,
   DirectAccess : boolean
) : GdPictureStatus;
public: GdPictureStatus SelectPage( 
   int ImageID,
   int PageNo,
   bool DirectAccess
) 
public:
GdPictureStatus SelectPage( 
   int ImageID,
   int PageNo,
   bool DirectAccess
) 

Parameters

ImageID
GdPicture image identifier.
PageNo
The page number in the range [1 - GetPageCount()].
DirectAccess
When True, only image properties, metadata and embedded thumbnail will be loaded. This parameter is particularly useful to obtain image information's without decoding it. Be careful not to call subsequent methods that need to access pixel data if this parameter is set to True

Return Value

A member of the GdPictureStatus enumeration.
See Also