menu

WPF

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class KpiInfoCollection - WPF API Reference | Syncfusion

    Show / Hide Table of Contents

    Class KpiInfoCollection

    Represents the Collection of KPI Information.

    Inheritance
    System.Object
    System.Collections.CollectionBase
    KpiInfoCollection
    Implements
    System.Collections.IList
    System.Collections.ICollection
    System.Collections.IEnumerable
    ICloneable<KpiInfoCollection>
    Inherited Members
    System.Collections.CollectionBase.Capacity
    System.Collections.CollectionBase.Clear()
    System.Collections.CollectionBase.Count
    System.Collections.CollectionBase.GetEnumerator()
    System.Collections.CollectionBase.InnerList
    System.Collections.CollectionBase.List
    System.Collections.CollectionBase.OnClear()
    System.Collections.CollectionBase.OnClearComplete()
    System.Collections.CollectionBase.OnInsert(System.Int32, System.Object)
    System.Collections.CollectionBase.OnInsertComplete(System.Int32, System.Object)
    System.Collections.CollectionBase.OnRemove(System.Int32, System.Object)
    System.Collections.CollectionBase.OnRemoveComplete(System.Int32, System.Object)
    System.Collections.CollectionBase.OnSet(System.Int32, System.Object, System.Object)
    System.Collections.CollectionBase.OnSetComplete(System.Int32, System.Object, System.Object)
    System.Collections.CollectionBase.OnValidate(System.Object)
    System.Collections.CollectionBase.RemoveAt(System.Int32)
    System.Collections.CollectionBase.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
    System.Collections.CollectionBase.System.Collections.ICollection.IsSynchronized
    System.Collections.CollectionBase.System.Collections.ICollection.SyncRoot
    System.Collections.CollectionBase.System.Collections.IList.Add(System.Object)
    System.Collections.CollectionBase.System.Collections.IList.Contains(System.Object)
    System.Collections.CollectionBase.System.Collections.IList.get_Item(System.Int32)
    System.Collections.CollectionBase.System.Collections.IList.IndexOf(System.Object)
    System.Collections.CollectionBase.System.Collections.IList.Insert(System.Int32, System.Object)
    System.Collections.CollectionBase.System.Collections.IList.IsFixedSize
    System.Collections.CollectionBase.System.Collections.IList.IsReadOnly
    System.Collections.CollectionBase.System.Collections.IList.Item[System.Int32]
    System.Collections.CollectionBase.System.Collections.IList.Remove(System.Object)
    System.Collections.CollectionBase.System.Collections.IList.set_Item(System.Int32, System.Object)
    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()
    Namespace: Syncfusion.Olap.Engine
    Assembly: Syncfusion.Olap.Base.dll
    Syntax
    public class KpiInfoCollection : CollectionBase, IList, ICollection, IEnumerable, ICloneable<KpiInfoCollection>

    Constructors

    KpiInfoCollection()

    Declaration
    public KpiInfoCollection()

    Properties

    AxisType

    Gets or sets the type of the axis.

    Declaration
    public KpiAxisType AxisType { get; set; }
    Property Value
    Type Description
    KpiAxisType

    The type of the axis.

    Item[Int32]

    Gets or sets the KpiInfo at the specified index.

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

    The index of the KPI information.

    Property Value
    Type
    KpiInfo

    Methods

    Add(KpiInfo)

    Adds the specified KPI information.

    Declaration
    public int Add(KpiInfo kpiInformation)
    Parameters
    Type Name Description
    KpiInfo kpiInformation

    The KPI information which is to be added.

    Returns
    Type Description
    System.Int32

    The index of the KPI information object in the current collection.

    Clone()

    Clones this instance.

    Declaration
    public KpiInfoCollection Clone()
    Returns
    Type Description
    KpiInfoCollection

    A copy of this instance.

    Contains(KpiInfo)

    Determines whether the collection contains specified KPI information.

    Declaration
    public bool Contains(KpiInfo kpiInfo)
    Parameters
    Type Name Description
    KpiInfo kpiInfo

    The KPI information object which is to be searched.

    Returns
    Type Description
    System.Boolean

    true if it contains the specified KPI information; otherwise, false.

    Contains(String)

    Determines whether the collection contains specified KPI information.

    Declaration
    public bool Contains(string kpiName)
    Parameters
    Type Name Description
    System.String kpiName

    The name of the KPI information which is to be searched.

    Returns
    Type Description
    System.Boolean

    true if it contains the specified KPI information; otherwise, false.

    FindByName(String)

    Finds the KPI information object by its name.

    Declaration
    public KpiInfo FindByName(string name)
    Parameters
    Type Name Description
    System.String name

    The name of the KPI information object.

    Returns
    Type Description
    KpiInfo

    The KPI information object.

    FindMemberIndexByName(String, String)

    Finds the index of the KPI information.

    Declaration
    public int FindMemberIndexByName(string kpiName, string memberName)
    Parameters
    Type Name Description
    System.String kpiName

    The name of the KPI information.

    System.String memberName

    The name of the member.

    Returns
    Type Description
    System.Int32

    The index of the KPI information.

    FindNextMemberPosition(Int32, String, String, KpiInfoCollection)

    Finds the position of the next member.

    Declaration
    public static int FindNextMemberPosition(int pos, string kpiName, string memberName, KpiInfoCollection kpiInfoCollection)
    Parameters
    Type Name Description
    System.Int32 pos

    The position.

    System.String kpiName

    The name of the KPI information.

    System.String memberName

    The name of the member.

    KpiInfoCollection kpiInfoCollection

    The collection of KPI information .

    Returns
    Type Description
    System.Int32

    The position of the next member.

    Merge(KpiInfoCollection)

    Merges the specified KPI information collection with the existing collection.

    Declaration
    public static KpiInfoCollection Merge(KpiInfoCollection kpiInfoCollection)
    Parameters
    Type Name Description
    KpiInfoCollection kpiInfoCollection

    The collection of KPI information.

    Returns
    Type Description
    KpiInfoCollection

    The merged collection of KPI information.

    Remove(KpiInfo)

    Removes the specified KPI information.

    Declaration
    public void Remove(KpiInfo kpiInformation)
    Parameters
    Type Name Description
    KpiInfo kpiInformation

    The KPI information object which is to be removed.

    RemoveMeasures()

    Removes the measures.

    Declaration
    public void RemoveMeasures()

    Implements

    System.Collections.IList
    System.Collections.ICollection
    System.Collections.IEnumerable
    ICloneable<T>

    Extension Methods

    FunctionalExtensions.ForEach<T>(IEnumerable, Action<T>)
    FunctionalExtensions.ToList<T>(IEnumerable)
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved