Bde.DBTables.TTable.KeyExclusive

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property KeyExclusive: Boolean read GetKeyExclusive write SetKeyExclusive;

C++

__property bool KeyExclusive = {read=GetKeyExclusive, write=SetKeyExclusive, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TTable

Description

Specifies how the upper and lower boundaries for a range should be interpreted.

Use KeyExclusive to specify whether a range includes or excludes the records that match the starting and ending values of the range. By default, KeyExclusive is false, meaning that matching values are included.

To restrict a range to those records that are greater than the specified starting value and less than the specified ending value, set KeyExclusive to true.

See Also