TDBGrid.Options looked at the TDBGrid.Options property in TDBGrid.Options , its type is TDBGridOptions , which is defined as:
typedef System::Set<TDBGridOption, TDBGridOption::dgEditing, TDBGridOption::dgTitleHotTrack> TDBGridOptions;
As you can see, C ++ Builder uses the System::Set<T, minEl, maxEl> to emulate Delphi set types.
All the functionality available with the built-in Delphi statements is displayed through methods Set . In particular, this question states that membership is being tested using Contains() .
source share