![]() |



Function |
Declared in: NiNumEditEvents.h |
Declaration
void OnIncDecButtonClicked( BOOL IncButton);
Description
Generated when the user clicks the increment or decrement button on the numeric edit control.
Parameters
BOOL IncButton
Contains true if the increment button was pressed, or false if the decrement button was pressed.
See Also
Example
void OnIncDecButtonClicked(BOOL IncButton) { if (IncButton) { // Your event code here. } }