CameraReadoutMode Property |
Readout mode, Interface Version 2 or later
Namespace:
ASCOM.DriverAccess
Assembly:
ASCOM.DriverAccess (in ASCOM.DriverAccess.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntaxpublic short ReadoutMode { get; set; }
Public Property ReadoutMode As Short
Get
Set
public:
virtual property short ReadoutMode {
short get () sealed;
void set (short value) sealed;
}
Property Value
Type:
Int16Return Value
Type:
Int16Short integer index into the
ReadoutModes array of string readout mode names indicating
the camera's current readout mode.
Implements
ICameraV3ReadoutMode
ExceptionsException | Condition |
---|
InvalidValueException | Must throw an exception if set to an illegal or unavailable mode. |
NotConnectedException | If the device is not connected. |
DriverException | An error occurred that is not described by one of the more specific ASCOM exceptions. The device did not successfully complete the request. |
RemarksReadoutMode 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
See Also