OnReadyStateChange

3D Graph

Function Group
OnReadyStateChange() Functions    Prev page: OnPlotMouseUpNext page: OnRotate    
Function Declared in:
NiGraph3DEvents.h

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

void OnReadyStateChange();

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

Generated when the ready state changes.

Note: When this event is generated, use the ReadyState property to determine the control's new ready state.

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

Shortcut to top of page. Example

void OnReadyStateChange() {
   if (m_Graph.ReadyState == READYSTATE_LOADED) {
       // Your event code here.
   }
}