Implementing Scrollbars: Step 2

Modify the Color.H file to add global variables and the prototype for a function that aids in calculating scroll ranges and positions.

The function prototype should appear as follows:

/* Use this function to interpret the WM_SIZE message's client area parameters */ 
void CalcClientMetrics (HWND hWnd,  
                        int *nClientWidth,  
                        int *nClientHeight,  
                        int *nRightBarThickness, 
                        int *nBottomBarThickness); 

The global variables should appear as follows:

int XScrollRange, YScrollRange; /* Scrollbar ranges */ 
int XScrollPosition, YScrollPosition; /* Scrollbar positions */ 

Help Version 20.0.2020.4.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C API Help