Метод | Описание | |
---|---|---|
Add ( |
Adds a WizardPage into the Collection
|
|
AddRange ( |
Adds an array of pages into the collection. Used by the Studio Designer generated coed
|
|
Contains ( |
Detects if a given Page is in the Collection
|
|
IndexOf ( |
Finds the position of the page in the colleciton
|
|
Insert ( int index, |
Adds a new page at a particular position in the Collection
|
|
PageCollection ( |
Constructor requires the wizard that owns this collection
|
|
Remove ( |
Removes the given page from the collection
|
|
this ( int index ) : |
Finds the Page in the collection
|
Метод | Описание | |
---|---|---|
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
|
public Add ( |
||
value | The page to add | |
Результат | int |
public AddRange ( |
||
pages | Array of pages to add | |
Результат | void |
public Contains ( |
||
value | Page to find | |
Результат | bool |
public IndexOf ( |
||
value | Page to find position of | |
Результат | int |
public Insert ( int index, |
||
index | int | Position |
value | Page to be added | |
Результат | void |
protected OnInsertComplete ( int index, object value ) : void | ||
index | int | |
value | object | |
Результат | void |
protected OnRemoveComplete ( int index, object value ) : void | ||
index | int | |
value | object | |
Результат | void |
public PageCollection ( |
||
parent | Wizard | |
Результат | System |
public Remove ( |
||
value | Page to remove | |
Результат | void |