Class GenericTreeTable<V>
Inheritance
System.Object
GenericTreeTable<V>
Implements
System.Collections.IList
System.Collections.ICollection
System.IDisposable
System.Collections.IEnumerable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Syncfusion.Spreadsheet.Windows.dll
public class GenericTreeTable<V> : ITreeTable, IList, ICollection, IDisposable, IList<GenericTreeTableEntry<V>>, ICollection<GenericTreeTableEntry<V>>, IEnumerable<GenericTreeTableEntry<V>>, IEnumerable, ISupportInitialize
Type Parameters
Constructors
Declaration
public GenericTreeTable(bool sorted)
Parameters
Type |
Name |
Description |
System.Boolean |
sorted |
|
Properties
Gets or sets the comparer used by sorted trees.
Declaration
public IComparer Comparer { get; set; }
Property Value
Type |
System.Collections.IComparer |
Gets the number of items contained in the collection.
Declaration
public int Count { get; }
Property Value
Declaration
public int Identifier { get; set; }
Property Value
Gets a value indicating whether the collection has a fixed size.
Declaration
public bool IsFixedSize { get; }
Property Value
Indicates whether BeginInit was called.
Declaration
public bool IsInitializing { get; }
Property Value
Gets a value indicating whether the collection is read-only.
Declaration
public bool IsReadOnly { get; }
Property Value
Declaration
public bool IsSynchronized { get; }
Property Value
Gets or sets the item at the zero-based index.
Declaration
public GenericTreeTableEntry<V> this[int index] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
Declaration
public ITreeTableNode Root { get; }
Property Value
Indicates whether thisTree is sorted.
Declaration
public bool Sorted { get; }
Property Value
Declaration
public object SyncRoot { get; }
Property Value
Declaration
public object Tag { get; set; }
Property Value
Methods
Add(GenericTreeTableEntry<V>)
Adds a value to the end of the collection.
Declaration
public int Add(GenericTreeTableEntry<V> item)
Parameters
Type |
Name |
Description |
GenericTreeTableEntry<V> |
item |
The item to be added to the end of the collection. The value must not be a NULL reference (Nothing in Visual Basic).
|
Returns
Type |
Description |
System.Int32 |
The zero-based collection index at which the value has been added.
|
AddIfNotExists(Object, GenericTreeTableEntry<V>)
Declaration
public GenericTreeTableEntry<V> AddIfNotExists(object key, GenericTreeTableEntry<V> entry)
Parameters
Returns
Optimizes insertion of many items when thisTree is initialized for the first time.
Declaration
Removes all items from the collection.
Declaration
Contains(GenericTreeTableEntry<V>)
Determines if the item belongs to this collection.
Declaration
public bool Contains(GenericTreeTableEntry<V> item)
Parameters
Type |
Name |
Description |
GenericTreeTableEntry<V> |
item |
The object to locate in the collection. The value can be a NULL reference (Nothing in Visual Basic).
|
Returns
Type |
Description |
System.Boolean |
True if item is found in the collection; otherwise False.
|
CopyTo(GenericTreeTableEntry<V>[], Int32)
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
Declaration
public void CopyTo(GenericTreeTableEntry<V>[] array, int index)
Parameters
Type |
Name |
Description |
GenericTreeTableEntry<V>[] |
array |
The one-dimensional array that is the destination of the items copied from the ArrayList. The array must have zero-based indexing.
|
System.Int32 |
index |
The zero-based index in an array at which copying begins.
|
Declaration
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type |
Name |
Description |
System.Boolean |
disposing |
|
Ends optimization of insertion of items when thisTree is initialized for the first time.
Declaration
Declaration
public GenericTreeTableEntry<V> FindHighestSmallerOrEqualKey(object key)
Parameters
Type |
Name |
Description |
System.Object |
key |
|
Returns
Declaration
public GenericTreeTableEntry<V> FindKey(object key)
Parameters
Type |
Name |
Description |
System.Object |
key |
|
Returns
Declaration
public IEnumerator<GenericTreeTableEntry<V>> GetEnumerator()
Returns
GetNextEntry(GenericTreeTableEntry<V>)
Optimized access to a subsequent entry.
Declaration
public GenericTreeTableEntry<V> GetNextEntry(GenericTreeTableEntry<V> current)
Parameters
Returns
GetPreviousEntry(GenericTreeTableEntry<V>)
Optimized access to the previous entry.
Declaration
public GenericTreeTableEntry<V> GetPreviousEntry(GenericTreeTableEntry<V> current)
Parameters
Returns
IndexOf(GenericTreeTableEntry<V>)
Returns the zero-based index of the occurrence of the item in the collection.
Declaration
public int IndexOf(GenericTreeTableEntry<V> item)
Parameters
Type |
Name |
Description |
GenericTreeTableEntry<V> |
item |
The item to locate in the collection. The value can be a NULL reference (Nothing in Visual Basic).
|
Returns
Type |
Description |
System.Int32 |
The zero-based index of the occurrence of the item within the entire collection, if found; otherwise -1.
|
Declaration
public int IndexOfKey(object key)
Parameters
Type |
Name |
Description |
System.Object |
key |
|
Returns
Insert(Int32, GenericTreeTableEntry<V>)
Inserts an item into the collection at the specified index.
Declaration
public void Insert(int index, GenericTreeTableEntry<V> item)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
The zero-based index at which the item should be inserted.
|
GenericTreeTableEntry<V> |
item |
The item to insert. The value must not be a NULL reference (Nothing in Visual Basic).
|
Remove(GenericTreeTableEntry<V>)
Removes the specified item from the collection.
Declaration
public bool Remove(GenericTreeTableEntry<V> item)
Parameters
Type |
Name |
Description |
GenericTreeTableEntry<V> |
item |
The item to remove from the collection. If the value is NULL or the item is not contained
in the collection, the method will do nothing.
|
Returns
Removes the item at the specified index of the collection.
Declaration
public void RemoveAt(int index)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
The zero-based index of the item to remove.
|
Explicit Interface Implementations
ITreeTable.GetNextEntry(ITreeTableEntry)
Declaration
ITreeTableEntry ITreeTable.GetNextEntry(ITreeTableEntry current)
Parameters
Returns
ITreeTable.GetPreviousEntry(ITreeTableEntry)
Declaration
ITreeTableEntry ITreeTable.GetPreviousEntry(ITreeTableEntry current)
Parameters
Returns
ICollection<GenericTreeTableEntry<V>>.Add(GenericTreeTableEntry<V>)
Declaration
void ICollection<GenericTreeTableEntry<V>>.Add(GenericTreeTableEntry<V> item)
Parameters
Declaration
void ICollection.CopyTo(Array array, int index)
Parameters
Type |
Name |
Description |
System.Array |
array |
|
System.Int32 |
index |
|
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type |
System.Collections.IEnumerator |
Declaration
int IList.Add(object value)
Parameters
Type |
Name |
Description |
System.Object |
value |
|
Returns
Declaration
bool IList.Contains(object value)
Parameters
Type |
Name |
Description |
System.Object |
value |
|
Returns
Declaration
object IList.get_Item(int index)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Returns
Declaration
int IList.IndexOf(object value)
Parameters
Type |
Name |
Description |
System.Object |
value |
|
Returns
Declaration
void IList.Insert(int index, object value)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Object |
value |
|
Declaration
object IList.this[] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Returns
Declaration
void IList.Remove(object value)
Parameters
Type |
Name |
Description |
System.Object |
value |
|
Declaration
void IList.set_Item(int index, object value)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Object |
value |
|
Implements
System.Collections.IList
System.Collections.ICollection
System.IDisposable
System.Collections.Generic.IList<T>
System.Collections.Generic.ICollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
Extension Methods