menu

UWP

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ChildCollection - UWP API Reference | Syncfusion

    Show / Hide Table of Contents

    Class ChildCollection

    Represents a collection of objects that can be individually accessed by index in the SfNavigator control.

    Inheritance
    System.Object
    ChildCollection
    Implements
    System.Collections.Generic.IList<System.Object>
    System.Collections.Generic.ICollection<System.Object>
    System.Collections.Generic.IEnumerable<System.Object>
    System.Collections.IEnumerable
    Namespace: Syncfusion.UI.Xaml.Controls
    Assembly: Syncfusion.SfShared.UWP.dll
    Syntax
    public class ChildCollection : Object, IList<object>, ICollection<object>, IEnumerable<object>, IEnumerable

    Constructors

    ChildCollection()

    Declaration
    public ChildCollection()

    Properties

    Count

    Gets the count of the children

    Declaration
    public int Count { get; }
    Property Value
    Type
    System.Int32

    IsReadOnly

    Gets a value IsReadOnly

    Declaration
    public bool IsReadOnly { get; }
    Property Value
    Type
    System.Boolean

    Item[Int32]

    Gets or sets the children at the index position

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

    index value

    Property Value
    Type Description
    System.Object

    returns the children at the index position

    Methods

    Add(Object)

    Add an item to children

    Declaration
    public void Add(object item)
    Parameters
    Type Name Description
    System.Object item

    input item

    Clear()

    Clears the children

    Declaration
    public void Clear()

    Contains(Object)

    Checks if the children contains the given item

    Declaration
    public bool Contains(object item)
    Parameters
    Type Name Description
    System.Object item

    input item

    Returns
    Type Description
    System.Boolean

    true if it contains; otherwise, false

    CopyTo(Object[], Int32)

    Copies an item to the children

    Declaration
    public void CopyTo(object[] array, int arrayIndex)
    Parameters
    Type Name Description
    System.Object[] array

    object array collection

    System.Int32 arrayIndex

    index in the array

    GetEnumerator()

    Gets the children enumerator

    Declaration
    public IEnumerator<object> GetEnumerator()
    Returns
    Type Description
    System.Collections.Generic.IEnumerator<System.Object>

    returns the children enumerator

    IndexOf(Object)

    Gets the index of the item

    Declaration
    public int IndexOf(object item)
    Parameters
    Type Name Description
    System.Object item

    input item

    Returns
    Type Description
    System.Int32

    returns index of item

    Insert(Int32, Object)

    Inserts an item in the particular index

    Declaration
    public void Insert(int index, object item)
    Parameters
    Type Name Description
    System.Int32 index

    index value to insert

    System.Object item

    input item

    Remove(Object)

    Removes an item from the children

    Declaration
    public bool Remove(object item)
    Parameters
    Type Name Description
    System.Object item

    input item

    Returns
    Type Description
    System.Boolean

    returns boolean value whether item is removed or not

    RemoveAt(Int32)

    Removes an item in the particular index

    Declaration
    public void RemoveAt(int index)
    Parameters
    Type Name Description
    System.Int32 index

    index value

    Implements

    System.Collections.Generic.IList<>
    System.Collections.Generic.ICollection<>
    System.Collections.Generic.IEnumerable<>
    System.Collections.IEnumerable

    Extension Methods

    DateTimeExtension.ToDateTime(Object)
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved