Class SetConditionHashCollection
Represents collection IList container for SetCondition and OlapSetCondition items, SetCondition
Inheritance
Namespace: Telerik.Pivot.Core
Assembly: Telerik.Pivot.Core.dll
Syntax
public class SetConditionHashCollection : Object, IList, ICollection, IList<object>, ICollection<object>, IEnumerable<object>, IEnumerable
Constructors
SetConditionHashCollection()
Initializes a new instance of the SetConditionHashCollection class.
Declaration
public SetConditionHashCollection()
SetConditionHashCollection(IEnumerable)
Initializes a new instance of the SetConditionHashCollection class.
Declaration
public SetConditionHashCollection(IEnumerable items)
Parameters
System.Collections.IEnumerable
items
The items to add to the SetConditionHashCollection |
Properties
Count
Declaration
public int Count { get; }
Property Value
System.Int32
|
IsFixedSize
Declaration
public bool IsFixedSize { get; }
Property Value
System.Boolean
|
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
System.Boolean
|
IsSynchronized
Declaration
public bool IsSynchronized { get; }
Property Value
System.Boolean
|
Item[Int32]
Declaration
public object this[int index] { get; set; }
Parameters
System.Int32
index
|
Property Value
System.Object
|
SyncRoot
Declaration
public object SyncRoot { get; }
Property Value
System.Object
|
Methods
Add(Object)
Declaration
public int Add(object value)
Parameters
System.Object
value
|
Returns
System.Int32
|
Clear()
Declaration
public void Clear()
Contains(Object)
Declaration
public bool Contains(object value)
Parameters
System.Object
value
|
Returns
System.Boolean
|
CopyTo(Array, Int32)
Declaration
public void CopyTo(Array array, int index)
Parameters
System.Array
array
|
System.Int32
index
|
GetEnumerator()
Declaration
public IEnumerator GetEnumerator()
Returns
System.Collections.IEnumerator
|
IndexOf(Object)
Declaration
public int IndexOf(object value)
Parameters
System.Object
value
|
Returns
System.Int32
|
Insert(Int32, Object)
Declaration
public void Insert(int index, object value)
Parameters
System.Int32
index
|
System.Object
value
|
Remove(Object)
Declaration
public void Remove(object value)
Parameters
System.Object
value
|
RemoveAt(Int32)
Declaration
public void RemoveAt(int index)
Parameters
System.Int32
index
|