menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Interface IScheduleAppointmentList - WindowsForms API Reference | Syncfusion

    Show / Hide Table of Contents

    Interface IScheduleAppointmentList

    Defines the collection of schedule items.

    Inherited Members
    System.Collections.ICollection.CopyTo(System.Array, System.Int32)
    System.Collections.ICollection.IsSynchronized
    System.Collections.ICollection.SyncRoot
    System.Collections.IEnumerable.GetEnumerator()
    System.Collections.IList.Add(System.Object)
    System.Collections.IList.Clear()
    System.Collections.IList.Contains(System.Object)
    System.Collections.IList.IndexOf(System.Object)
    System.Collections.IList.Insert(System.Int32, System.Object)
    System.Collections.IList.IsFixedSize
    System.Collections.IList.IsReadOnly
    System.Collections.IList.Remove(System.Object)
    Namespace: Syncfusion.Schedule
    Assembly: Syncfusion.Schedule.Base.dll
    Syntax
    public interface IScheduleAppointmentList : IList, ICollection, IEnumerable

    Properties

    Count

    Gets number of IScheduleAppointments in this list.

    Declaration
    int Count { get; }
    Property Value
    Type
    System.Int32

    Item[Int32]

    An IScheduleAppointment referenced through an indexer.

    Declaration
    IScheduleAppointment this[int i] { get; set; }
    Parameters
    Type Name Description
    System.Int32 i

    Get the ScheduleAppointment based on index

    Property Value
    Type
    IScheduleAppointment

    Methods

    Add(IScheduleAppointment)

    Adds an IScheduleAppointment at the end of this collection.

    Declaration
    void Add(IScheduleAppointment item)
    Parameters
    Type Name Description
    IScheduleAppointment item

    An IScheduleAppointment item.

    Find(Int32)

    Finds an IScheduleAppointment in the collection using its IScheduleAppointment.UniqueID.

    Declaration
    IScheduleAppointment Find(int uniqueID)
    Parameters
    Type Name Description
    System.Int32 uniqueID

    The IScheduleAppointment.UniqueID of the IScheduleAppointment being searched for.

    Returns
    Type Description
    IScheduleAppointment

    The IScheduleAppointment whose IScheduleAppointment.UniqueID is the given uniqueID.

    IndexOf(IScheduleAppointment)

    Locates the index of a particular IScheduleAppointment in this collection.

    Declaration
    int IndexOf(IScheduleAppointment item)
    Parameters
    Type Name Description
    IScheduleAppointment item

    The item to be located.

    Returns
    Type Description
    System.Int32

    The index of the given item.

    Insert(Int32, IScheduleAppointment)

    Inserts the given IScheduleAppointment at a particular position in this collection.

    Declaration
    void Insert(int index, IScheduleAppointment item)
    Parameters
    Type Name Description
    System.Int32 index

    Where the item should be inserted.

    IScheduleAppointment item

    The item to be inserted.

    NewScheduleAppointment()

    Returns an instance of a new schedule item.

    Declaration
    IScheduleAppointment NewScheduleAppointment()
    Returns
    Type Description
    IScheduleAppointment

    A new schedule item that can be added to this list.

    Remove(IScheduleAppointment)

    Removes a given IScheduleAppointment from this collection.

    Declaration
    void Remove(IScheduleAppointment item)
    Parameters
    Type Name Description
    IScheduleAppointment item

    The item to be removed.

    RemoveAt(Int32)

    Removes an IScheduleAppointment at the given index from this collection.

    Declaration
    void RemoveAt(int index)
    Parameters
    Type Name Description
    System.Int32 index

    The index of the IScheduleAppointment to be removed.

    SortStartTime()

    Arranges the IScheduleAppointments in this list according to IScheduleAppointment.StartTime.

    Declaration
    void SortStartTime()

    Extension Methods

    EnumerableExtensions.GetElementType(IEnumerable)
    EnumerableExtensions.GetItemPropertyInfo(IEnumerable)
    FunctionalExtensions.ForEach<T>(IEnumerable, Action<T>)
    FunctionalExtensions.ToList<T>(IEnumerable)
    FunctionalExtensions.MoveTo(IList, Int32, Int32)
    QueryableExtensions.OfQueryable(IEnumerable)
    QueryableExtensions.OfQueryable(IEnumerable, Type)
    QueryableExtensions.GroupByMany<TElement>(IEnumerable, Type, List<Func<TElement, Object>>)
    QueryableExtensions.GroupByMany(IEnumerable, Type, Func<String, Expression>, String[])
    QueryableExtensions.GroupByMany(IEnumerable, Type, List<SortDescriptor>, Dictionary<String, IComparer<Object>>, Func<String, Expression>, String[])
    QueryableExtensions.GroupByMany(IEnumerable, Type, List<SortDescriptor>, Func<String, Expression>, String[])
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved