Click or drag to resize

ICameraV3ReadoutMode Property

Readout mode, Interface Version 2 only

Namespace: ASCOM.DeviceInterface
Assembly: ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 6.0.0.0 (6.6.9999.9999)
Syntax
short ReadoutMode { get; set; }

Property Value

Int16

Return Value

Int16
Short integer index into the ReadoutModes array of string readout mode names indicating the camera's current readout mode.
Exceptions
ExceptionCondition
InvalidValueExceptionMust throw an exception if set to an illegal or unavailable mode.
NotConnectedExceptionIf the device is not connected
DriverExceptionAn error occurred that is not described by one of the more specific ASCOM exceptions. Include sufficient detail in the message text to enable the issue to be accurately diagnosed by someone other than yourself.
Remarks

Must be implemented if CanFastReadout is false, must throw a PropertyNotImplementedException if CanFastReadout is true.

ReadoutMode is an index into the array ReadoutModes, and selects the desired readout mode for the camera. Defaults to 0 if not set. Throws an exception if the selected mode is not available.

It is strongly recommended, but not required, that driver authors make the 0-index mode suitable for standard imaging operations, since it is the default.

Please see ReadoutModes for additional information.

This is only available for the Camera Interface Version 2 and later.

See Also