type TPaths = class(TObject)
Path collection.
![]() |
constructor Create(); |
![]() |
destructor Destroy; override; |
![]() |
procedure Add(const Item: TPath); |
![]() |
procedure Insert(index: Integer; const Item: TPath); |
![]() |
procedure Delete(index: Integer); |
![]() |
procedure Clear; |
![]() |
function IndexOf(const pathName: String): integer; |
![]() |
property Count: Integer read GetCount; |
![]() |
property Items[index:Integer]: TPath read GetItem write SetItem; |
![]() |
constructor Create(); |
|
Constructor. | |
![]() |
destructor Destroy; override; |
|
Destructor. | |
![]() |
procedure Add(const Item: TPath); |
|
Add path to collection.
Parameters
| |
![]() |
procedure Insert(index: Integer; const Item: TPath); |
|
Insert path into collection.
Parameters
| |
![]() |
procedure Delete(index: Integer); |
|
Delete path from collection.
Parameters
| |
![]() |
procedure Clear; |
|
Remove all paths from collection. | |
![]() |
function IndexOf(const pathName: String): integer; |
|
Get index of path by name.
Parameters
ReturnsIndex of the path. | |
![]() |
property Count: Integer read GetCount; |
|
Path count. | |
![]() |
property Items[index:Integer]: TPath read GetItem write SetItem; |
|
Path items. | |