Search Results for

    Show / Hide Table of Contents

    Class YAxisList

    A collection class containing a list of YAxis objects.

    Inheritance
    Object
    List<YAxis>
    YAxisList
    Implements
    IList<YAxis>
    ICollection<YAxis>
    IEnumerable<YAxis>
    IList
    ICollection
    IEnumerable
    ICloneable
    Inherited Members
    System.Collections.Generic.List<ZedGraph.YAxis>.System.Collections.IList.get_Item(System.Int32)
    System.Collections.Generic.List<ZedGraph.YAxis>.System.Collections.IList.set_Item(System.Int32, System.Object)
    List<YAxis>.Add(YAxis)
    List<YAxis>.AddRange(IEnumerable<YAxis>)
    List<YAxis>.AsReadOnly()
    List<YAxis>.BinarySearch(Int32, Int32, YAxis, IComparer<YAxis>)
    List<YAxis>.BinarySearch(YAxis)
    List<YAxis>.BinarySearch(YAxis, IComparer<YAxis>)
    List<YAxis>.Clear()
    List<YAxis>.Contains(YAxis)
    List<YAxis>.ConvertAll<TOutput>(Converter<YAxis, TOutput>)
    List<YAxis>.CopyTo(Int32, YAxis[], Int32, Int32)
    List<YAxis>.CopyTo(YAxis[])
    List<YAxis>.CopyTo(YAxis[], Int32)
    List<YAxis>.Exists(Predicate<YAxis>)
    List<YAxis>.Find(Predicate<YAxis>)
    List<YAxis>.FindAll(Predicate<YAxis>)
    List<YAxis>.FindIndex(Int32, Int32, Predicate<YAxis>)
    List<YAxis>.FindIndex(Int32, Predicate<YAxis>)
    List<YAxis>.FindIndex(Predicate<YAxis>)
    List<YAxis>.FindLast(Predicate<YAxis>)
    List<YAxis>.FindLastIndex(Int32, Int32, Predicate<YAxis>)
    List<YAxis>.FindLastIndex(Int32, Predicate<YAxis>)
    List<YAxis>.FindLastIndex(Predicate<YAxis>)
    List<YAxis>.ForEach(Action<YAxis>)
    List<YAxis>.GetEnumerator()
    List<YAxis>.GetRange(Int32, Int32)
    List<YAxis>.IndexOf(YAxis)
    List<YAxis>.IndexOf(YAxis, Int32)
    List<YAxis>.IndexOf(YAxis, Int32, Int32)
    List<YAxis>.Insert(Int32, YAxis)
    List<YAxis>.InsertRange(Int32, IEnumerable<YAxis>)
    List<YAxis>.LastIndexOf(YAxis)
    List<YAxis>.LastIndexOf(YAxis, Int32)
    List<YAxis>.LastIndexOf(YAxis, Int32, Int32)
    List<YAxis>.Remove(YAxis)
    List<YAxis>.RemoveAll(Predicate<YAxis>)
    List<YAxis>.RemoveAt(Int32)
    List<YAxis>.RemoveRange(Int32, Int32)
    List<YAxis>.Reverse()
    List<YAxis>.Reverse(Int32, Int32)
    List<YAxis>.Sort()
    List<YAxis>.Sort(IComparer<YAxis>)
    List<YAxis>.Sort(Comparison<YAxis>)
    List<YAxis>.Sort(Int32, Int32, IComparer<YAxis>)
    List<YAxis>.IEnumerable<YAxis>.GetEnumerator()
    List<YAxis>.ICollection.CopyTo(Array, Int32)
    List<YAxis>.IEnumerable.GetEnumerator()
    List<YAxis>.IList.Add(Object)
    List<YAxis>.IList.Contains(Object)
    List<YAxis>.IList.IndexOf(Object)
    List<YAxis>.IList.Insert(Int32, Object)
    List<YAxis>.IList.Remove(Object)
    List<YAxis>.ToArray()
    List<YAxis>.TrimExcess()
    List<YAxis>.TrueForAll(Predicate<YAxis>)
    List<YAxis>.Capacity
    List<YAxis>.Count
    List<YAxis>.ICollection<YAxis>.IsReadOnly
    List<YAxis>.ICollection.IsSynchronized
    List<YAxis>.ICollection.SyncRoot
    List<YAxis>.IList.IsFixedSize
    List<YAxis>.IList.IsReadOnly
    List<YAxis>.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
    [Serializable]
    public class YAxisList : List<YAxis>, IList<YAxis>, ICollection<YAxis>, IEnumerable<YAxis>, IList, ICollection, IEnumerable, ICloneable

    Constructors

    | Improve this Doc View Source

    YAxisList()

    Default constructor for the collection class.

    Declaration
    public YAxisList()
    | Improve this Doc View Source

    YAxisList(YAxisList)

    The Copy Constructor

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

    The YAxisList object from which to copy

    Properties

    | Improve this Doc View Source

    Item[Int32]

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

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

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

    Property Value
    Type Description
    YAxis

    An Axis object reference.

    | Improve this Doc View Source

    Item[String]

    Indexer to access the specified Axis object by its Title string.

    Declaration
    public YAxis this[string title] { get; }
    Parameters
    Type Name Description
    String title

    The string title of the YAxis object to be accessed.

    Property Value
    Type Description
    YAxis

    A Axis object reference.

    Methods

    | Improve this Doc View Source

    Add(String)

    Create a new YAxis and add it to this list.

    Declaration
    public int Add(string title)
    Parameters
    Type Name Description
    String title

    The title string for the new axis

    Returns
    Type Description
    Int32

    An integer representing the ordinal position of the new YAxis in this YAxisList. This is the value that you would set the YAxisIndex property of a given CurveItem to assign it to this new YAxis.

    | Improve this Doc View Source

    Clone()

    Typesafe, deep-copy clone method.

    Declaration
    public YAxisList Clone()
    Returns
    Type Description
    YAxisList

    A new, independent copy of this class

    | Improve this Doc View Source

    IndexOf(String)

    Return the zero-based position index of the Axis with the specified Title.

    Declaration
    public int IndexOf(string title)
    Parameters
    Type Name Description
    String title

    The String label that is in the Title attribute of the item to be found.

    Returns
    Type Description
    Int32

    The zero-based index of the specified Axis, or -1 if the Title was not found in the list

    Remarks

    The comparison of titles is not case sensitive, but it must include all characters including punctuation, spaces, etc.

    See Also
    IndexOfTag(String)
    | Improve this Doc View Source

    IndexOfTag(String)

    Return the zero-based position index of the Axis with the specified Tag.

    Declaration
    public int IndexOfTag(string tagStr)
    Parameters
    Type Name Description
    String tagStr

    The String tag that is in the Tag attribute of the item to be found.

    Returns
    Type Description
    Int32

    The zero-based index of the specified Axis, or -1 if the Tag string is not in the list

    Remarks

    In order for this method to work, the Tag property must be of type String.

    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