Click or drag to resize

TelescopeAxisRates Method

A collection of rates at which the telescope may be moved about the specified axis by the MoveAxis(TelescopeAxes, Double) method.

Namespace:  ASCOM.DriverAccess
Assembly:  ASCOM.DriverAccess (in ASCOM.DriverAccess.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntax
public IAxisRates AxisRates(
	TelescopeAxes Axis
)

Parameters

Axis
Type: ASCOM.DeviceInterfaceTelescopeAxes
The axis about which rate information is desired (TelescopeAxes value)

Return Value

Type: IAxisRates
Collection of AxisRates(TelescopeAxes) rate objects

Implements

ITelescopeV3AxisRates(TelescopeAxes)
Exceptions
ExceptionCondition
InvalidValueExceptionIf an invalid Axis is specified
NotConnectedExceptionIf the device is not connected
DriverExceptionAn error occurred that is not described by one of the more specific ASCOM exceptions. The device did not successfully complete the request.
Remarks
See the description of MoveAxis(TelescopeAxes, Double) for more information. This method must return an empty collection if MoveAxis(TelescopeAxes, Double) is not supported.

This is only available for telescope InterfaceVersions 2 and later

Please note that the rate objects must contain absolute non-negative values only. Applications determine the direction by applying a positive or negative sign to the rates provided. This obviates the need for the driver to present a duplicate set of negative rates as well as the positive rates.

See Also