Class TileGroupCollection
Inherited Members
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class TileGroupCollection : ArrayListExt
Constructors
TileGroupCollection()
Creates a new instance of the collection.
Declaration
public TileGroupCollection()
Properties
Item[Int32]
Gets / sets a reference to the TreeNodeAdv at the specified index location in the collection. In C#, this property is the indexer for the TreeNodeAdvCollection class.
Declaration
public LayoutGroup this[int index] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | The location of the TreeNodeAdv in the collection. |
Property Value
| Type | Description |
|---|---|
| LayoutGroup | The reference to the TreeNodeAdv. |
Methods
Add(LayoutGroup)
Adds a TreeNodeAdv to the collection.
Declaration
public virtual int Add(LayoutGroup node)
Parameters
| Type | Name | Description |
|---|---|---|
| LayoutGroup | node | The TreeNodeAdv to add. |
Returns
| Type | Description |
|---|---|
| System.Int32 | The position of the added node in the list. |
AddRange(LayoutGroup[])
Adds an array of TreeNodeAdv objects to the collection.
Declaration
public void AddRange(LayoutGroup[] items)
Parameters
| Type | Name | Description |
|---|---|---|
| LayoutGroup[] | items | An array of TreeNodeAdv objects to add to the collection. |
OnBeforeRemoving(Int32)
Declaration
protected virtual void OnBeforeRemoving(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
OnCollectionChanged(CollectionChangeEventArgs)
Declaration
protected override void OnCollectionChanged(CollectionChangeEventArgs args)
Parameters
| Type | Name | Description |
|---|---|---|
| System.ComponentModel.CollectionChangeEventArgs | args |
Overrides
RaiseBeforeRemoving(CollectionChangeEventArgs)
Declaration
protected void RaiseBeforeRemoving(CollectionChangeEventArgs e)
Parameters
| Type | Name | Description |
|---|---|---|
| System.ComponentModel.CollectionChangeEventArgs | e |
RemoveAt(Int32)
Declaration
public override void RemoveAt(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
Overrides
Sort()
Declaration
public override void Sort()
Sort(SortOrder)
Sorts the collection using the specified sort order.
Declaration
public virtual void Sort(SortOrder order)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Windows.Forms.SortOrder | order | One of the System.Windows.Forms.SortOrder entries. |
Events
BeforeRemoving
Declaration
public event CollectionChangeEventHandler BeforeRemoving
Event Type
| Type |
|---|
| System.ComponentModel.CollectionChangeEventHandler |