IRate Interface

Describes a range of rates supported by the MoveAxis(TelescopeAxis, Double) method (degrees/per second) These are contained within an IAxisRates collection and serve to describe one or more supported ranges of rates of motion about a mechanical axis. It is possible that the Maximum and Minimum properties will be equal. In this case, the IRate object expresses a single discrete rate. Both the Minimum and Maximum properties are always expressed in units of degrees per second. This is only using for Telescope InterfaceVersions 2 and 3

Definition

Namespace: ASCOM.Common.DeviceInterfaces
Assembly: ASCOM.Common (in ASCOM.Common.dll) Version: 2.2.1+77356f79b05b579f6d860a4edd5934fda9fe29e4
C#
public interface IRate

Remarks

Values used must be non-negative and are scalar values. You do not need to supply complementary negative rates for each positive rate that you specify. Movement in both directions is achieved by the application applying an appropriate positive or negative sign to the rate when it is used in the MoveAxis(TelescopeAxis, Double) command.

Properties

Maximum The maximum rate (degrees per second) This must always be a positive number. It indicates the maximum rate in either direction about the axis.
Minimum The minimum rate (degrees per second) This must always be a positive number. It indicates the maximum rate in either direction about the axis.

Methods

Dispose Dispose the late-bound interface, if needed. Will release it via COM if it is a COM object, else if native .NET will just dereference it for GC.

Version Information

.NET Standard

Supported in: 2.0

See Also