ClassWizardPageCollection
Represents a collection of WizardPage objects.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
public class WizardPageCollection : ObservableCollection<WizardPage>, IList, ICollection, IEnumerable, INotifyCollectionChanged, INotifyCollectionChanging, INotifyPropertyChanged, INotifyPropertyChangingEx
Inheritance: objectCollection<WizardPage>ObservableCollection<WizardPage>WizardPageCollection
Implements:
Inherited Members
Constructors
WizardPageCollection(RadWizardElement)
Creates a WizardPageCollection instance.
Declaration
public WizardPageCollection(RadWizardElement owner)
Parameters
owner
Owner of the element.
Properties
Owner
Gets the owner RadWizardElement of the collection.
Declaration
public RadWizardElement Owner { get; }
Property Value
Methods
Add(WizardPage)
Inserts a WizardPage before the RadWizard CompletionPage in the collection.
InsertItem(int, WizardPage)
Overridden. Inserts an item into the collection at the specified index.
Declaration
protected override void InsertItem(int index, WizardPage item)
Parameters
index
item
Overrides
RemoveItem(int)
Overridden. Removes the item at the specified index of the collection.
Declaration
protected override void RemoveItem(int index)
Parameters
index
Overrides
SetItem(int, WizardPage)
Overridden. Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, WizardPage item)
Parameters
index
item
Overrides