API:System.WideStrings.TWideStringList.GetCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetCount: Integer; override;

C++

virtual int __fastcall GetCount();

Properties

Type Visibility Source Unit Parent
function protected
System.WideStrings.pas
System.WideStrings.hpp
System.WideStrings TWideStringList

Description

Returns the number of strings in the list

System.WideStrings.TWideStringList.GetCount inherits from System.WideStrings.TWideStrings.GetCount. All content below this line refers to System.WideStrings.TWideStrings.GetCount.

Returns the number of strings in the list

GetCount is the protected read implementation of the Count property.

In TWideStrings 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