OnIncDecButtonClicked

CNi

Function Group
OnIncDecButtonClicked() Functions    Prev page: OnErrorNext page: OnKeyDown    
Function Declared in:
NiNumEditEvents.h

'Declaration' icon -- Shortcut to top of page. Declaration

void OnIncDecButtonClicked(
    BOOL IncButton);

'Description' icon -- Shortcut to top of page. Description

Generated when the user clicks the increment or decrement button on the numeric edit control.

Shortcut to top of page. Parameters

BOOL IncButton

Contains true if the increment button was pressed, or false if the decrement button was pressed.

'See Also' icon -- Shortcut to top of page. See Also

Shortcut to top of page. Example

void OnIncDecButtonClicked(BOOL IncButton) {
   if (IncButton) {
       // Your event code here.
   }
}