InterfaceIAppointmentsPanel
The ScheduleView AppointmentsPanel wrapper for SL/Wpf interface.
Definition
Namespace:Telerik.WebAii.Controls.Xaml
Assembly:Telerik.WebAii.Controls.Xaml.dll
Syntax:
public interface IAppointmentsPanel : IControl, IFrameworkElement, ITargetElement
Derived Classes:
Inherited Members
Properties
AppointmentItems
Get the list of Appointment items.
Declaration
IList<IAppointmentItem> AppointmentItems { get; }
Property Value
GroupHeaders
Get the list of GroupHeader items.
Declaration
IList<IGroupHeader> GroupHeaders { get; }
Property Value
Methods
GetAllAppointmentsBySubject(string, bool)
Gets all appointment item with spesific subject.
Declaration
IList<IAppointmentItem> GetAllAppointmentsBySubject(string text, bool isExactMatch)
Parameters
text
The text that should be contained in the subject of the appointment.
isExactMatch
Indicates wheter to search by containing text or by exact match
Returns
GetAllGroupHeadersByText(string, bool)
Gets all group header by spesific text.
Declaration
IList<IGroupHeader> GetAllGroupHeadersByText(string text, bool isExactMatch)
Parameters
text
The text of the group header.
isExactMatch
Indicates wheter to search by containing text or by exact match
Returns
GetAppointmentBySubject(string, bool)
Gets spesific appointment item by its subject.
Declaration
IAppointmentItem GetAppointmentBySubject(string subject, bool isExactMatch)
Parameters
subject
The subject of the appointment.
isExactMatch
Indicates wheter to search by containing text or by exact match
Returns
GetGroupHeaderByText(string, bool)
Gets spesific group header by its text.
Declaration
IGroupHeader GetGroupHeaderByText(string text, bool isExactMatch)
Parameters
text
The text of the group header.
isExactMatch
Indicates wheter to search by containing text or by exact match
Returns