Interface IAppointmentsPanel
Inherited Members
Namespace: Telerik.WebAii.Controls.Xaml
Assembly: Telerik.WebAii.Controls.Xaml.dll
Syntax
public interface IAppointmentsPanel : IControl, IFrameworkElement, ITargetElement
Properties
AppointmentItems
Declaration
IList<IAppointmentItem> AppointmentItems { get; }
Property Value
System.Collections.Generic.IList<IAppointmentItem>
|
GroupHeaders
Declaration
IList<IGroupHeader> GroupHeaders { get; }
Property Value
System.Collections.Generic.IList<IGroupHeader>
|
Methods
GetAllAppointmentsBySubject(String, Boolean)
Declaration
IList<IAppointmentItem> GetAllAppointmentsBySubject(string text, bool isExactMatch)
Parameters
System.String
text
|
System.Boolean
isExactMatch
|
Returns
System.Collections.Generic.IList<IAppointmentItem>
|
GetAllGroupHeadersByText(String, Boolean)
Declaration
IList<IGroupHeader> GetAllGroupHeadersByText(string text, bool isExactMatch)
Parameters
System.String
text
|
System.Boolean
isExactMatch
|
Returns
System.Collections.Generic.IList<IGroupHeader>
|
GetAppointmentBySubject(String, Boolean)
Declaration
IAppointmentItem GetAppointmentBySubject(string subject, bool isExactMatch)
Parameters
System.String
subject
|
System.Boolean
isExactMatch
|
Returns
IAppointmentItem
|
GetGroupHeaderByText(String, Boolean)
Declaration
IGroupHeader GetGroupHeaderByText(string text, bool isExactMatch)
Parameters
System.String
text
|
System.Boolean
isExactMatch
|
Returns
IGroupHeader
|