Tabs::Page

 

This method clear the graphic region for the tab tool.

 

 

Syntax

 

void  Page(

          int dim_y=0

) ;

 

 

Parameters

 

dim_y

          Height of the page (without the tabs themselves). If the parameter is omitted, the height is computed from the Page_Y parameter.

 

 

Return value

 

This method does not return a value.

 

 

Remarks

 

 

Requirements

 

Header:

          TomoVision_Util.hpp

          TomoVision_Tools.hpp

 

Library:

          TomoVision_Util.lib

          TomoVision_Tools.lib

 

 

Example

 

static          Tabs          tab ;

 

extern "C" __declspec(dllexport) int          Ctrl_Draw( HWND wnd )

{

          ...

 

          // --- draw the tab container ---

          tab.Draw() ;

          tab.Page() ;

          (*(Func_Draw[tab.Cur_Value]))( wnd ) ;

 

          return( 1 ) ;

}

 

See also