API:Data.DBXPlatform.TDBXStringList.GetCount

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: protected
Source: System.Classes.pas
Unit: Data.DBXPlatform
Parent: TDBXStringList

Delphi

function GetCount: Integer; override;

Description

Returns the number of strings in the list

Data.DBXPlatform.TDBXStringList.GetCount inherits from System.Classes.TStrings.GetCount. All content below this line refers to System.Classes.TStrings.GetCount.

Returns the number of strings in the list

GetCount is the protected read implementation of the Count property.

In TStrings GetCount is abstract or, in C++ terminology, pure virtual, meaning it has no implementation. Descendant classes must override this method to return the number of strings that have been added to the list.

See Also