| TaskDialogItemItemCollection Property |
When implemented in a derived class, gets the item collection on a task dialog that this type of item is
part of.
Namespace:
Ookii.Dialogs
Assembly:
Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax protected abstract IEnumerable ItemCollection { get; }
Protected MustOverride ReadOnly Property ItemCollection As IEnumerable
Get
protected:
virtual property IEnumerable^ ItemCollection {
IEnumerable^ get () abstract;
}
abstract ItemCollection : IEnumerable with get
Property Value
Type:
IEnumerable
For
TaskDialogButton items, the
Buttons
collection of the
TaskDialog instance this item is part of. For
TaskDialogRadioButton items, the
RadioButtons
collection of the
TaskDialog instance this item is part of. If the
TaskDialogItem is not
currently associated with a
TaskDialog,
.
Remarks
The collection returned by this property is used to determine if there are any items with duplicate IDs.
See Also