PCL
|
Typedefs | |
using | pcl::TabBox::page_event_handler = void(Control::*)(TabBox &sender, int pageIndex) |
Functions | |
void | pcl::TabBox::OnPageSelected (page_event_handler handler, Control &receiver) |
using pcl::TabBox::page_event_handler = void (Control::*)( TabBox& sender, int pageIndex ) |
Defines the prototype of a tab box page event handler.
A tab box page event is generated when the user changes the current page in a tab box control.
sender | The control that sends a tab box page event. |
pageIndex | The zero-based index of a tab box page. |
void pcl::TabBox::OnPageSelected | ( | page_event_handler | handler, |
Control & | receiver | ||
) |
Sets the tab box page selected event handler for this TabBox control.
handler | The tab box page event handler. Must be a member function of the receiver object's class. |
receiver | The control that will receive tab box page selected events from this TabBox. |