New to Telerik UI for WinFormsStart a free 30-day trial

Represents collection IList container for SetCondition and OlapSetCondition items, SetCondition

Definition

Namespace:Telerik.Pivot.Core

Assembly:Telerik.WinControls.PivotGrid.dll

Syntax:

C#
[CollectionDataContract]
public class SetConditionHashCollection : IList, ICollection, IEnumerable

Inheritance: objectSetConditionHashCollection

Implements: ICollectionIEnumerableIList

Constructors

Initializes a new instance of the SetConditionHashCollection class.

C#
public SetConditionHashCollection()

Initializes a new instance of the SetConditionHashCollection class.

C#
public SetConditionHashCollection(IEnumerable items)
Parameters:itemsIEnumerable

The items to add to the SetConditionHashCollection

Properties

C#
public int Count { get; }

Implements: ICollection.Count

C#
public bool IsFixedSize { get; }

Implements: IList.IsFixedSize

C#
public bool IsReadOnly { get; }

Implements: IList.IsReadOnly

C#
public bool IsSynchronized { get; }

Implements: ICollection.IsSynchronized

C#
public object SyncRoot { get; }

Implements: ICollection.SyncRoot

C#
public object this[int index] { get; set; }
Parameters:indexint

Implements: IList.this[int]

Methods

C#
public int Add(object value)
Parameters:valueobjectReturns:

int

Implements: IList.Add(object)

C#
public void Clear()

Implements: IList.Clear()

C#
public bool Contains(object value)
Parameters:valueobjectReturns:

bool

Implements: IList.Contains(object)

C#
public void CopyTo(Array array, int index)
Parameters:arrayArrayindexint

Implements: ICollection.CopyTo(Array, int)

C#
public IEnumerator GetEnumerator()
Returns:

IEnumerator

Implements: IEnumerable.GetEnumerator()

C#
public int IndexOf(object value)
Parameters:valueobjectReturns:

int

Implements: IList.IndexOf(object)

C#
public void Insert(int index, object value)
Parameters:indexintvalueobject

Implements: IList.Insert(int, object)

C#
public void Remove(object value)
Parameters:valueobject

Implements: IList.Remove(object)

C#
public void RemoveAt(int index)
Parameters:indexint

Implements: IList.RemoveAt(int)