C# Class ZForge.Controls.Wizard.PageCollection

Summary description for PanelCollection.
Inheritance: System.Collections.CollectionBase
Afficher le fichier Open project: zhuangyy/Motion Class Usage Examples

Méthodes publiques

Méthode Description
Add ( WizardPage value ) : int

Adds a WizardPage into the Collection

AddRange ( WizardPage pages ) : void

Adds an array of pages into the collection. Used by the Studio Designer generated coed

Contains ( WizardPage value ) : bool

Detects if a given Page is in the Collection

IndexOf ( WizardPage value ) : int

Finds the position of the page in the colleciton

Insert ( int index, WizardPage value ) : void

Adds a new page at a particular position in the Collection

PageCollection ( Wizard parent ) : System

Constructor requires the wizard that owns this collection

Remove ( WizardPage value ) : void

Removes the given page from the collection

this ( int index ) : WizardPage

Finds the Page in the collection

Méthodes protégées

Méthode Description
OnInsertComplete ( int index, object value ) : void

Propgate when a external designer modifies the pages

OnRemoveComplete ( int index, object value ) : void

Propogates when external designers remove items from page

Method Details

Add() public méthode

Adds a WizardPage into the Collection
public Add ( WizardPage value ) : int
value WizardPage The page to add
Résultat int

AddRange() public méthode

Adds an array of pages into the collection. Used by the Studio Designer generated coed
public AddRange ( WizardPage pages ) : void
pages WizardPage Array of pages to add
Résultat void

Contains() public méthode

Detects if a given Page is in the Collection
public Contains ( WizardPage value ) : bool
value WizardPage Page to find
Résultat bool

IndexOf() public méthode

Finds the position of the page in the colleciton
public IndexOf ( WizardPage value ) : int
value WizardPage Page to find position of
Résultat int

Insert() public méthode

Adds a new page at a particular position in the Collection
public Insert ( int index, WizardPage value ) : void
index int Position
value WizardPage Page to be added
Résultat void

OnInsertComplete() protected méthode

Propgate when a external designer modifies the pages
protected OnInsertComplete ( int index, object value ) : void
index int
value object
Résultat void

OnRemoveComplete() protected méthode

Propogates when external designers remove items from page
protected OnRemoveComplete ( int index, object value ) : void
index int
value object
Résultat void

PageCollection() public méthode

Constructor requires the wizard that owns this collection
public PageCollection ( Wizard parent ) : System
parent Wizard Wizard
Résultat System

Remove() public méthode

Removes the given page from the collection
public Remove ( WizardPage value ) : void
value WizardPage Page to remove
Résultat void

this() public méthode

Finds the Page in the collection
public this ( int index ) : WizardPage
index int
Résultat WizardPage