Bde.DBTables.TSessionList.Count

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TSessionList

Delphi

property Count: Integer read GetCount;

C++

__property int Count = {read=GetCount, nodefault};

Description

Indicates the number of available sessions for the application.

Read Count to determine the current number of available sessions. Count is typically used to iterate through the list of available sessions to perform some universal action on all sessions. Used with the Sessions property, which enables an application to access a session by index number, Count specifies the maximum number of index entries for Sessions (Count - 1).

See Also