Data.Bind.Components.TBindArtifactItem.ID

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ID: string read FID write FID;

C++

__property System::UnicodeString ID = {read=FID, write=FID};

Properties

Type Visibility Source Unit Parent
property published
Data.Bind.Components.pas
Data.Bind.Components.hpp
Data.Bind.Components TBindArtifactItem

Description

A unique, permanent index for the item.

Data.Bind.Components.TBindArtifactItem.ID inherits from System.Classes.TCollectionItem.ID. All content below this line refers to System.Classes.TCollectionItem.ID.

A unique, permanent index for the item.

In most cases, ID is the value of the item's Index property when it was first added to the collection. But, unlike Index values, ID values are never changed or reassigned. If an item is removed from a collection, its ID not used again.

An item's Index may change when other items are deleted from the collection or when items are rearranged. ID provides a unique identifier for each item that is unchanged for the life of the collection.

See Also