CAnnoData::SelectPage

#include “BiAnno.h”

void SelectPage( int nPage );

Description

Selects the current image page. Only the objects of this page will be displayed.

Parameters

int

nPage

The number of the current page

Return value

None

Programming Notes

None

Code Example                      

// Views next image of multi image TIFF file.

void CVtiffDoc::OnPageForward()

{

    LoadImage(NULL, this->nCurrent+1);

    m_Anno->SelectPage( nCurrent );

}