Skip to main content

WizardPageCollection.Insert(Int32, BaseWizardPage) Method

Adds the specified wizard page to the collection at the specified position.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v23.2.dll

NuGet Package: DevExpress.Win

Declaration

public virtual bool Insert(
    int position,
    BaseWizardPage page
)

Parameters

Name Type Description
position Int32

A zero-based index at which the specified page is inserted. If negative or exceeds the number of elements in the collection, an exception is thrown.

page BaseWizardPage

A BaseWizardPage object to add to the collection.

Returns

Type Description
Boolean

true if the specified wizard page has been added to the collection; otherwise, false.

Remarks

If the specified wizard page is already contained within the collection, the Insert method does nothing and returns false.

See Also