API:Soap.SOAPAttachIntf.TSoapDataList

From RAD Studio API Documentation
Jump to: navigation, search

System.Generics.Collections.TListSystem.Generics.Collections.TEnumerableSystem.TObjectTSoapDataList

Delphi

TSoapDataList = class(TList<TSoapAttachment>)

C++

class PASCALIMPLEMENTATION TSoapDataList : public System::Generics::Collections::TList__1<Soap::Invokeregistry::TSOAPAttachment*>

Properties

Type Visibility Source Unit Parent
class public
Soap.SOAPAttachIntf.pas
Soap.SOAPAttachIntf.hpp
Soap.SOAPAttachIntf Soap.SOAPAttachIntf

Description

Ordered list.

Soap.SOAPAttachIntf.TSoapDataList inherits from System.Generics.Collections.TList. All content below this line refers to System.Generics.Collections.TList.

Ordered list.

TList represents an ordered list, accessible by an index.

You can create a list with a specific collection of items and a comparison operator.

You can add, change, insert or remove an item from a list, or clear the entire list. You can add nil objects to the list.

You can sort, search and reverse a list.

Count contains the number of items in the queue. Capacity is the number of items the list can hold before being resized. You can also set and get values by indexing the Items array.

An OnNotify event tells you when the list has changed.

The class TObjectList inherits from TList and provides an automatic mechanism for freeing objects removed from lists.

See Also

Code Examples