System.Classes.EBitsError
Delphi
EBitsError = class(Exception);
C++
class PASCALIMPLEMENTATION EBitsError : public System::Sysutils::Exception
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | System.Classes.pas System.Classes.hpp |
System.Classes | System.Classes |
Description
EBitsError is the exception class for invalid attempts to access an array of Boolean values.
EBitsError is raised when an application attempts to access a Boolean array (an instance of the TBits class) using an index value that is too large or too small. This can occur when the value of the Index parameter of the Bits property is:
- Less than zero.
- Equal to or greater than the Size property.