Search Results for

    Show / Hide Table of Contents

    Class ScrollRangeList

    A collection class containing a list of ScrollRange objects.

    Inheritance
    Object
    List<ScrollRange>
    ScrollRangeList
    Implements
    IList<ScrollRange>
    ICollection<ScrollRange>
    IEnumerable<ScrollRange>
    IList
    ICollection
    IEnumerable
    ICloneable
    Inherited Members
    System.Collections.Generic.List<ZedGraph.ScrollRange>.System.Collections.IList.get_Item(System.Int32)
    System.Collections.Generic.List<ZedGraph.ScrollRange>.System.Collections.IList.set_Item(System.Int32, System.Object)
    List<ScrollRange>.Add(ScrollRange)
    List<ScrollRange>.AddRange(IEnumerable<ScrollRange>)
    List<ScrollRange>.AsReadOnly()
    List<ScrollRange>.BinarySearch(Int32, Int32, ScrollRange, IComparer<ScrollRange>)
    List<ScrollRange>.BinarySearch(ScrollRange)
    List<ScrollRange>.BinarySearch(ScrollRange, IComparer<ScrollRange>)
    List<ScrollRange>.Clear()
    List<ScrollRange>.Contains(ScrollRange)
    List<ScrollRange>.ConvertAll<TOutput>(Converter<ScrollRange, TOutput>)
    List<ScrollRange>.CopyTo(Int32, ScrollRange[], Int32, Int32)
    List<ScrollRange>.CopyTo(ScrollRange[])
    List<ScrollRange>.CopyTo(ScrollRange[], Int32)
    List<ScrollRange>.Exists(Predicate<ScrollRange>)
    List<ScrollRange>.Find(Predicate<ScrollRange>)
    List<ScrollRange>.FindAll(Predicate<ScrollRange>)
    List<ScrollRange>.FindIndex(Int32, Int32, Predicate<ScrollRange>)
    List<ScrollRange>.FindIndex(Int32, Predicate<ScrollRange>)
    List<ScrollRange>.FindIndex(Predicate<ScrollRange>)
    List<ScrollRange>.FindLast(Predicate<ScrollRange>)
    List<ScrollRange>.FindLastIndex(Int32, Int32, Predicate<ScrollRange>)
    List<ScrollRange>.FindLastIndex(Int32, Predicate<ScrollRange>)
    List<ScrollRange>.FindLastIndex(Predicate<ScrollRange>)
    List<ScrollRange>.ForEach(Action<ScrollRange>)
    List<ScrollRange>.GetEnumerator()
    List<ScrollRange>.GetRange(Int32, Int32)
    List<ScrollRange>.IndexOf(ScrollRange)
    List<ScrollRange>.IndexOf(ScrollRange, Int32)
    List<ScrollRange>.IndexOf(ScrollRange, Int32, Int32)
    List<ScrollRange>.Insert(Int32, ScrollRange)
    List<ScrollRange>.InsertRange(Int32, IEnumerable<ScrollRange>)
    List<ScrollRange>.LastIndexOf(ScrollRange)
    List<ScrollRange>.LastIndexOf(ScrollRange, Int32)
    List<ScrollRange>.LastIndexOf(ScrollRange, Int32, Int32)
    List<ScrollRange>.Remove(ScrollRange)
    List<ScrollRange>.RemoveAll(Predicate<ScrollRange>)
    List<ScrollRange>.RemoveAt(Int32)
    List<ScrollRange>.RemoveRange(Int32, Int32)
    List<ScrollRange>.Reverse()
    List<ScrollRange>.Reverse(Int32, Int32)
    List<ScrollRange>.Sort()
    List<ScrollRange>.Sort(IComparer<ScrollRange>)
    List<ScrollRange>.Sort(Comparison<ScrollRange>)
    List<ScrollRange>.Sort(Int32, Int32, IComparer<ScrollRange>)
    List<ScrollRange>.IEnumerable<ScrollRange>.GetEnumerator()
    List<ScrollRange>.ICollection.CopyTo(Array, Int32)
    List<ScrollRange>.IEnumerable.GetEnumerator()
    List<ScrollRange>.IList.Add(Object)
    List<ScrollRange>.IList.Contains(Object)
    List<ScrollRange>.IList.IndexOf(Object)
    List<ScrollRange>.IList.Insert(Int32, Object)
    List<ScrollRange>.IList.Remove(Object)
    List<ScrollRange>.ToArray()
    List<ScrollRange>.TrimExcess()
    List<ScrollRange>.TrueForAll(Predicate<ScrollRange>)
    List<ScrollRange>.Capacity
    List<ScrollRange>.Count
    List<ScrollRange>.ICollection<ScrollRange>.IsReadOnly
    List<ScrollRange>.ICollection.IsSynchronized
    List<ScrollRange>.ICollection.SyncRoot
    List<ScrollRange>.IList.IsFixedSize
    List<ScrollRange>.IList.IsReadOnly
    List<ScrollRange>.IList.Item[Int32]
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: ZedGraph
    Assembly: ZedGraph.dll
    Syntax
    public class ScrollRangeList : List<ScrollRange>, IList<ScrollRange>, ICollection<ScrollRange>, IEnumerable<ScrollRange>, IList, ICollection, IEnumerable, ICloneable

    Constructors

    | Improve this Doc View Source

    ScrollRangeList()

    Default constructor for the collection class.

    Declaration
    public ScrollRangeList()
    | Improve this Doc View Source

    ScrollRangeList(ScrollRangeList)

    The Copy Constructor

    Declaration
    public ScrollRangeList(ScrollRangeList rhs)
    Parameters
    Type Name Description
    ScrollRangeList rhs

    The ScrollRangeList object from which to copy

    Properties

    | Improve this Doc View Source

    Item[Int32]

    Indexer to access the specified ScrollRange object by its ordinal position in the list.

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

    The ordinal position (zero-based) of the ScrollRange object to be accessed.

    Property Value
    Type Description
    ScrollRange

    A ScrollRange object instance

    Methods

    | Improve this Doc View Source

    Clone()

    Typesafe, deep-copy clone method.

    Declaration
    public ScrollRangeList Clone()
    Returns
    Type Description
    ScrollRangeList

    A new, independent copy of this class

    Explicit Interface Implementations

    | Improve this Doc View Source

    ICloneable.Clone()

    Implement the ICloneable interface in a typesafe manner by just calling the typed version of Clone()

    Declaration
    object ICloneable.Clone()
    Returns
    Type Description
    Object

    A deep copy of this object

    Implements

    System.Collections.Generic.IList<T>
    System.Collections.Generic.ICollection<T>
    System.Collections.Generic.IEnumerable<T>
    System.Collections.IList
    System.Collections.ICollection
    System.Collections.IEnumerable
    System.ICloneable
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX