New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Constructors

C#
public RadPageViewSubPageCollection(RadPageViewPage owner)
Parameters:ownerRadPageViewPage

Properties

C#
public int Count { get; }

Implements: ICollection.Count

C#
public bool IsFixedSize { get; }

Implements: IList.IsFixedSize

C#
public bool IsReadOnly { get; }

Implements: IList.IsReadOnly

C#
public bool IsSynchronized { get; }

Implements: ICollection.IsSynchronized

Gets the RadPageViewPage instance that this collection is associated with.

C#
public RadPageViewPage Owner { get; }
C#
public object SyncRoot { get; }

Implements: ICollection.SyncRoot

C#
public RadPageViewPage this[int index] { get; set; }
Parameters:indexint
C#
public RadPageViewPage this[string name] { get; }
Parameters:namestring

Methods

C#
public int Add(object value)
Parameters:valueobjectReturns:

int

Implements: IList.Add(object)

C#
public void Add(RadPageViewPage item)
Parameters:itemRadPageViewPage
C#
public void Clear()

Implements: IList.Clear()

C#
public bool Contains(object value)
Parameters:valueobjectReturns:

bool

Implements: IList.Contains(object)

C#
public bool Contains(RadPageViewPage item)
Parameters:itemRadPageViewPageReturns:

bool

C#
public bool Contains(string name)
Parameters:namestringReturns:

bool

C#
public void CopyTo(Array array, int index)
Parameters:arrayArrayindexint

Implements: ICollection.CopyTo(Array, int)

C#
public void CopyTo(RadPageViewPage[] array, int arrayIndex)
Parameters:arrayRadPageViewPage[]arrayIndexint
C#
public IEnumerator<RadPageViewPage> GetEnumerator()
Returns:

IEnumerator<RadPageViewPage>

C#
public int IndexOf(object value)
Parameters:valueobjectReturns:

int

Implements: IList.IndexOf(object)

C#
public int IndexOf(RadPageViewPage item)
Parameters:itemRadPageViewPageReturns:

int

C#
public void Insert(int index, object value)
Parameters:indexintvalueobject

Implements: IList.Insert(int, object)

C#
public void Insert(int index, RadPageViewPage item)
Parameters:indexintitemRadPageViewPage
C#
public void Move(int oldIndex, int newIndex)
Parameters:oldIndexintnewIndexint
C#
protected virtual void OnChildPagesCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
Parameters:senderobjecteNotifyCollectionChangedEventArgs
C#
public void Remove(object value)
Parameters:valueobject

Implements: IList.Remove(object)

C#
public bool Remove(RadPageViewPage item)
Parameters:itemRadPageViewPageReturns:

bool

C#
public void RemoveAt(int index)
Parameters:indexint

Implements: IList.RemoveAt(int)

Events

Occurs when an item is added, removed, changed, moved, or the entire list is refreshed.

C#
public event NotifyCollectionChangedEventHandler CollectionChanged