|
|
Gets the number of logical positions moved in response to keyboard input from the arrow keys. Gets the number of logical positions the trackbar's slider moves in response to keyboard input from the arrow keys. The logical positions are the integer increments in the trackbar's range of minimum to maximum slider positions.
TBM_GETLINESIZE wParam = 0; lParam = 0;
Definition at line 212 of file trackbar.h. |
|
|
Gets the maximum logical position for the slider in a trackbar.
TBM_GETMAX wParam = 0; lParam = 0;
Definition at line 383 of file trackbar.h. |
|
|
Gets the minimum logical position for the slider.
TBM_GETMIN wParam = 0; lParam = 0;
Definition at line 136 of file trackbar.h. |
|
|
Gets the number of logical positions moved in response to keyboard input from page keys.. Gets the number of logical positions the trackbar's slider moves in response to keyboard input form page keys, such as PAGE DOWN or PAGE UP keys. The logical positions are the integer increments in the trackbar's range of minimum to maximum slider positions.
TBM_GETPAGESIZE wParam = 0; lParam = 0;
Definition at line 257 of file trackbar.h. |
|
|
Gets the current logical position of the slider.
TBM_GETPOS wParam = 0; lParam = 0;
Definition at line 169 of file trackbar.h. |
|
|
Gets the interval frequency for tick marks in a trackbar.
TBM_GETTICKFREQ wParam = 0; lParam = 0;
Definition at line 332 of file trackbar.h. |
|
|
Gets the start and end tip strings.
TBM_GETTIP char starttip [TBLEN_TIP + 1]; char endtip [TBLEN_TIP + 1]; wParam = (WPARAM)starttip; lParam = (LPARAM)endtip;
Definition at line 299 of file trackbar.h. |
|
|
Sets the number of logical positions moved in response to keyboard input from the arrow keys. Sets the number of logical positions the trackbar's slider moves in response to keyboard input from the arrow keys. The logical positions are the integer increments in the trackbar's range of minimum to maximum slider positions.
TBM_SETLINESIZE int linesize; wParam = (WPARAM)linesize; lParam = 0;
Definition at line 192 of file trackbar.h. |
|
|
Sets the maximum logical position for the slider in a trackbar.
TBM_SETMAX int max; wParam = (WPARAM)max; lParam = 0;
Definition at line 368 of file trackbar.h. |
|
|
Sets the minimum logical position for the slider in a trackbar.
TBM_SETMIN int min; wParam = (WPARAM)min; lParam = 0;
Definition at line 350 of file trackbar.h. |
|
|
Sets the number of logical positions moved in response to keyboard input from page keys.. Sets the number of logical positions the trackbar's slider moves in response to keyboard input form page keys, such as PAGE DOWN or PAGE UP keys. The logical positions are the integer increments in the trackbar's range of minimum to maximum slider positions.
TBM_SETPAGESIZE int pagesize; wParam = (WPARAM)pagesize; lParam = 0;
Definition at line 236 of file trackbar.h. |
|
|
Sets the current logical position of the slider.
TBM_SETPOS int pos; wParam = (WPARAM)pos; lParam = 0;
Definition at line 154 of file trackbar.h. |
|
|
Sets the range of minimum and maximum logical positions for the slider in a trackbar.
TBM_SETRANGE int min; int max; wParam = (WPARAM)min; lParam = (LPARAM)max;
Definition at line 121 of file trackbar.h. |
|
|
Sets the interval frequency for tick marks in a trackbar.
TBM_SETTICKFREQ int tickfreq; wParam = (WPARAM)tickfreq; lParam = 0;
Definition at line 317 of file trackbar.h. |
|
|
Sets the start and end tip strings.
TBM_SETTIP char* starttip; char* endtip; wParam = (WPARAM)starttip; lParam = (LPARAM)endtip;
Definition at line 277 of file trackbar.h. |
1.4.2