Xceed Toolkit Plus for WPF v5.1 Documentation
Xceed.Wpf.Toolkit Assembly / Xceed.Wpf.Toolkit.Chart Namespace / ListBase<T> Class
Members


In This Topic
    ListBase<T> Class
    In This Topic
    Base class used in the chart's controls as list containers.
    Syntax
    'Declaration
     
    <DefaultMemberAttribute("Item")>
    Public Class ListBase(Of T) 
    'Usage
     
    Dim instance As ListBase(Of T)
    [DefaultMember("Item")]
    public class ListBase<T> 
    Type Parameters
    T
    Inheritance Hierarchy
    Public Constructors
     NameDescription
    Public ConstructorOverloaded. Initializes a new instance of the ListBase<T> class.  
    Top
    Public Properties
     NameDescription
    Public PropertyGets the number of items in the ListBase.  
    Public PropertyGets whether the ListBase is read-only.  
    Public Property

    Retrieves or assigns an item in a collection.

     
    Top
    Public Methods
     NameDescription
    Public MethodAdds an item to the ListBase.  
    Public MethodAdds the items of the specified collection to the ListBase.  
    Public MethodRemoves all items from the ListBase.  
    Public MethodDetermines whether an element is in the ListBase.  
    Public MethodCopies the entire ListBase to a compatible one-dimensional array, starting at the specified index of the target array.  
    Public MethodReturns an enumerator that iterates through the ListBase.  
    Public MethodDetermines the index of a specific item in the ListBase.  
    Public MethodInserts an item into the ListBase at the specified index.  
    Public MethodRemoves the first occurrence of a specific object from the ListBase.  
    Public MethodRemoves the element at the specified index of the ListBase.  
    Public MethodCopies the elements of the ListBase to a new array.  
    Top
    Protected Methods
     NameDescription
    Protected MethodReturns the number of elements actually contained in the ListBase.  
    Protected MethodCalled before a list is modified, raising the BeforeListChanged event.  
    Protected MethodCalled after a list has been modified, raising the ListChanged event.  
    Top
    Public Events
     NameDescription
    Public EventRaised before the list is changed.  
    Public EventRaised after the list is changed.  
    Top
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also