Show / Hide Table of Contents

    Class NoteHandleList

    Inheritance
    object
    NoteHandleList
    Implements
    IEnumerable<NoteHandle>
    IEnumerable
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Database
    Assembly: DesignData.SDS2.Database.dll
    Syntax
    public class NoteHandleList : IEnumerable<NoteHandle>, IEnumerable

    Constructors

    NoteHandleList()

    Declaration
    public NoteHandleList()

    NoteHandleList(NoteHandleList)

    Declaration
    public NoteHandleList(NoteHandleList other)
    Parameters
    Type Name Description
    NoteHandleList other

    NoteHandleList(IEnumerable<NoteHandle>)

    Declaration
    public NoteHandleList(IEnumerable<NoteHandle> c)
    Parameters
    Type Name Description
    IEnumerable<NoteHandle> c

    NoteHandleList(IEnumerable)

    Declaration
    public NoteHandleList(IEnumerable c)
    Parameters
    Type Name Description
    IEnumerable c

    NoteHandleList(int)

    Declaration
    public NoteHandleList(int capacity)
    Parameters
    Type Name Description
    int capacity

    Properties

    Capacity

    Declaration
    public int Capacity { get; set; }
    Property Value
    Type Description
    int

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    int

    IsFixedSize

    Declaration
    public bool IsFixedSize { get; }
    Property Value
    Type Description
    bool

    IsReadOnly

    Declaration
    public bool IsReadOnly { get; }
    Property Value
    Type Description
    bool

    IsSynchronized

    Declaration
    public bool IsSynchronized { get; }
    Property Value
    Type Description
    bool

    this[int]

    Declaration
    public NoteHandle this[int index] { get; set; }
    Parameters
    Type Name Description
    int index
    Property Value
    Type Description
    NoteHandle

    Methods

    Add(NoteHandle)

    Declaration
    public void Add(NoteHandle x)
    Parameters
    Type Name Description
    NoteHandle x

    AddRange(NoteHandleList)

    Declaration
    public void AddRange(NoteHandleList values)
    Parameters
    Type Name Description
    NoteHandleList values

    Clear()

    Declaration
    public void Clear()

    CopyTo(NoteHandle[])

    Declaration
    public void CopyTo(NoteHandle[] array)
    Parameters
    Type Name Description
    NoteHandle[] array

    CopyTo(NoteHandle[], int)

    Declaration
    public void CopyTo(NoteHandle[] array, int arrayIndex)
    Parameters
    Type Name Description
    NoteHandle[] array
    int arrayIndex

    CopyTo(int, NoteHandle[], int, int)

    Declaration
    public void CopyTo(int index, NoteHandle[] array, int arrayIndex, int count)
    Parameters
    Type Name Description
    int index
    NoteHandle[] array
    int arrayIndex
    int count

    ~NoteHandleList()

    Declaration
    protected ~NoteHandleList()

    GetEnumerator()

    Declaration
    public NoteHandleList.NoteHandleListEnumerator GetEnumerator()
    Returns
    Type Description
    NoteHandleList.NoteHandleListEnumerator

    GetRange(int, int)

    Declaration
    public NoteHandleList GetRange(int index, int count)
    Parameters
    Type Name Description
    int index
    int count
    Returns
    Type Description
    NoteHandleList

    Insert(int, NoteHandle)

    Declaration
    public void Insert(int index, NoteHandle x)
    Parameters
    Type Name Description
    int index
    NoteHandle x

    InsertRange(int, NoteHandleList)

    Declaration
    public void InsertRange(int index, NoteHandleList values)
    Parameters
    Type Name Description
    int index
    NoteHandleList values

    RemoveAt(int)

    Declaration
    public void RemoveAt(int index)
    Parameters
    Type Name Description
    int index

    RemoveRange(int, int)

    Declaration
    public void RemoveRange(int index, int count)
    Parameters
    Type Name Description
    int index
    int count

    Repeat(NoteHandle, int)

    Declaration
    public static NoteHandleList Repeat(NoteHandle value, int count)
    Parameters
    Type Name Description
    NoteHandle value
    int count
    Returns
    Type Description
    NoteHandleList

    Reverse()

    Declaration
    public void Reverse()

    Reverse(int, int)

    Declaration
    public void Reverse(int index, int count)
    Parameters
    Type Name Description
    int index
    int count

    SetRange(int, NoteHandleList)

    Declaration
    public void SetRange(int index, NoteHandleList values)
    Parameters
    Type Name Description
    int index
    NoteHandleList values

    ToArray()

    Declaration
    public NoteHandle[] ToArray()
    Returns
    Type Description
    NoteHandle[]

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top