alexa
menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download

    Show / Hide Table of Contents

    Class CheckedNodesCollection

    Represents the node collection contains checked nodes in treeView. Use Add or Remove methods to add or remove nodes. These methods will check or uncheck proceed nodes automatically. Use Clear method to delete and uncheck all nodes from collection.

    Inheritance
    System.Object
    ArrayListExt
    CheckedNodesCollection
    CheckedNodesColection
    Inherited Members
    ArrayListExt.add_ItemPropertyChanged(SyncfusionPropertyChangedEventHandler)
    ArrayListExt.AddHandlers(Object)
    ArrayListExt.CollectionChanged
    ArrayListExt.ForceFixedSize
    ArrayListExt.ForceReadOnly
    ArrayListExt.Insert(Int32, Object)
    ArrayListExt.InsertRange(Int32, ICollection)
    ArrayListExt.IsCollectionChangedEventSuspended
    ArrayListExt.IsFixedSize
    ArrayListExt.IsReadOnly
    ArrayListExt.ItemPropertyChanged
    ArrayListExt.Move(Int32, Int32, Int32)
    ArrayListExt.OnCollectionChanged(CollectionChangeEventArgs)
    ArrayListExt.OnCollectionChanging()
    ArrayListExt.OnItemPropertyChanged(Object, SyncfusionPropertyChangedEventArgs)
    ArrayListExt.RaiseCollectionChanged(CollectionChangeEventArgs)
    ArrayListExt.ReleaseHandler(Object)
    ArrayListExt.remove_ItemPropertyChanged(SyncfusionPropertyChangedEventHandler)
    ArrayListExt.RemoveAt(Int32)
    ArrayListExt.RemoveRange(Int32, Int32)
    ArrayListExt.ResumeEvents(Boolean)
    ArrayListExt.Reverse(Int32, Int32)
    ArrayListExt.Sort(Int32, Int32, IComparer)
    ArrayListExt.SuspendEvents()
    Namespace: Syncfusion.Windows.Forms.Tools.MultiColumnTreeView
    Assembly: Syncfusion.Tools.Windows.dll
    Syntax
    public class CheckedNodesCollection : ArrayListExt

    Constructors

    CheckedNodesCollection()

    Initialize a new instance of the CheckedNodesCollection class.

    Declaration
    public CheckedNodesCollection()

    Properties

    Item[Int32]

    Gets the node at the specified index.

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

    The index value of TreeNode.

    Property Value
    Type Description
    TreeNodeAdv

    Returns the specified index.

    Methods

    Add(Object)

    Adds the specified node to the collection and checks it.

    Declaration
    public override int Add(object value)
    Parameters
    Type Name Description
    System.Object value

    Tree node object.

    Returns
    Type Description
    System.Int32

    Returns treenode index.

    Overrides
    ArrayListExt.Add(Object)

    AddNodes(TreeNodeAdvCollection)

    Adds checked nodes from the collection to the list of checked nodes.

    Declaration
    public void AddNodes(TreeNodeAdvCollection nodes)
    Parameters
    Type Name Description
    TreeNodeAdvCollection nodes

    Treenode Collection

    Clear()

    Clears the collection.

    Declaration
    public override void Clear()
    Overrides
    ArrayListExt.Clear()

    Remove(Object)

    Removes specified node from collection and unchecks it.

    Declaration
    public override void Remove(object obj)
    Parameters
    Type Name Description
    System.Object obj

    Treenode object.

    RemoveNodes(TreeNodeAdvCollection)

    Removes checked nodes in the specified collection from the list of checked nodes.

    Declaration
    public void RemoveNodes(TreeNodeAdvCollection nodes)
    Parameters
    Type Name Description
    TreeNodeAdvCollection nodes

    Treenode collection

    Back to top Generated by DocFX
    Copyright © 2001 - 2026 Syncfusion Inc. All Rights Reserved