long AxisCountGet ( void   ) 

Description:
AxisCountGet returns the number of axes processing on the controller.
Returns:
(long) The axis count.
Sample Code:
  // -- C++ -- //
  printf("Enabled axes: %ld\n", controller->AxisCountGet());
  // -- C# -- //
  Console.WriteLine("Enabled axes: {0}", controller.AxisCountGet());
Notes:
The standard default is 8. Should you have less than 8 axes, the remaining axes are included as phantoms.
See also:
AxisCountSet
Examples:
AxisSwitchID.cs, and PhantomAxis.cs.