System.Classes.TCollectionNotification

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

TCollectionNotification = (cnAdded, cnExtracting, cnDeleting);

C++

enum DECLSPEC_DENUM TCollectionNotification : unsigned char { cnAdded, cnExtracting, cnDeleting };

プロパティ

種類 可視性 ソース ユニット
enum public
System.Classes.pas
System.Classes.hpp
System.Classes System.Classes

説明

TCollectionNotification は、コレクション内のアイテムに行われた変更のタイプを表します。

次の表に、TCollectionNotification に指定可能な値を示します。



意味

cnAdded

アイテムがコレクションに単純に追加されました。

cnExtracting

アイテムがコレクションから削除されようとしてしています(ただし、解放はされません)。

cnDeleting

アイテムがコレクションから削除されて解放されようとしています。



関連項目