C# Класс ZForge.Controls.Wizard.PageCollection

Summary description for PanelCollection.
Наследование: System.Collections.CollectionBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Защищенные методы

Метод Описание
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

Описание методов

Add() публичный метод

Adds a WizardPage into the Collection
public Add ( WizardPage value ) : int
value WizardPage The page to add
Результат int

AddRange() публичный метод

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
Результат void

Contains() публичный метод

Detects if a given Page is in the Collection
public Contains ( WizardPage value ) : bool
value WizardPage Page to find
Результат bool

IndexOf() публичный метод

Finds the position of the page in the colleciton
public IndexOf ( WizardPage value ) : int
value WizardPage Page to find position of
Результат int

Insert() публичный метод

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
Результат void

OnInsertComplete() защищенный метод

Propgate when a external designer modifies the pages
protected OnInsertComplete ( int index, object value ) : void
index int
value object
Результат void

OnRemoveComplete() защищенный метод

Propogates when external designers remove items from page
protected OnRemoveComplete ( int index, object value ) : void
index int
value object
Результат void

PageCollection() публичный метод

Constructor requires the wizard that owns this collection
public PageCollection ( Wizard parent ) : System
parent Wizard Wizard
Результат System

Remove() публичный метод

Removes the given page from the collection
public Remove ( WizardPage value ) : void
value WizardPage Page to remove
Результат void

this() публичный метод

Finds the Page in the collection
public this ( int index ) : WizardPage
index int
Результат WizardPage