Show / Hide Table of Contents

Class PagedControl.PageCollection

Inheritance
System.Object
PagedControl.PageCollection
Namespace: Manina.Windows.Forms
Assembly: PagedControl.dll
Syntax
public class PageCollection : IList<Page>, ICollection<Page>, IEnumerable<Page>, IEnumerable

Constructors

| Improve this Doc View Source

PageCollection(PagedControl)

Declaration
public PageCollection(PagedControl control)
Parameters
Type Name Description
PagedControl control

Properties

| Improve this Doc View Source

Count

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

IsReadOnly

Declaration
public bool IsReadOnly { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Item[Int32]

Declaration
public Page this[int index] { get; set; }
Parameters
Type Name Description
System.Int32 index
Property Value
Type Description
Page

Methods

| Improve this Doc View Source

Add(Page)

Declaration
public void Add(Page item)
Parameters
Type Name Description
Page item
| Improve this Doc View Source

Clear()

Declaration
public void Clear()
| Improve this Doc View Source

Contains(Page)

Declaration
public bool Contains(Page item)
Parameters
Type Name Description
Page item
Returns
Type Description
System.Boolean
| Improve this Doc View Source

CopyTo(Page[], Int32)

Declaration
public void CopyTo(Page[] array, int arrayIndex)
Parameters
Type Name Description
Page[] array
System.Int32 arrayIndex
| Improve this Doc View Source

CopyTo(Array, Int32)

Declaration
public void CopyTo(Array array, int index)
Parameters
Type Name Description
System.Array array
System.Int32 index
| Improve this Doc View Source

GetEnumerator()

Declaration
public IEnumerator<Page> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<Page>
| Improve this Doc View Source

IndexOf(Page)

Declaration
public int IndexOf(Page item)
Parameters
Type Name Description
Page item
Returns
Type Description
System.Int32
| Improve this Doc View Source

Insert(Int32, Page)

Declaration
public void Insert(int index, Page item)
Parameters
Type Name Description
System.Int32 index
Page item
| Improve this Doc View Source

Remove(Page)

Declaration
public bool Remove(Page item)
Parameters
Type Name Description
Page item
Returns
Type Description
System.Boolean
| Improve this Doc View Source

RemoveAt(Int32)

Declaration
public void RemoveAt(int index)
Parameters
Type Name Description
System.Int32 index
Back to top Copyright © 2018 Özgür Özçıtak