ClassAppointmentsPanel
The ScheduleView AppointmentsPanel wrapper.
Definition
Namespace:Telerik.WebAii.Controls.Xaml.Wpf
Assembly:Telerik.WebAii.Controls.Xaml.Wpf.dll
Syntax:
public class AppointmentsPanel : Control, IAutomationPeer, IPeerConverter, IAppointmentsPanel, IControl, IFrameworkElement, ITargetElement
Inheritance: objectAutomationObject<FrameworkElement>FrameworkElementWpfTestElementControlAppointmentsPanel
Implements:
Inherited Members
Constructors
AppointmentsPanel()
Initializes a new instance of the AppointmentsPanel class.
Declaration
public AppointmentsPanel()
Properties
AppointmentItems
Get the list of Appointment items.
Declaration
public IList<IAppointmentItem> AppointmentItems { get; }
Property Value
Implements
GroupHeaders
Get the list of GroupHeader items.
Declaration
public IList<IGroupHeader> GroupHeaders { get; }
Property Value
Implements
Methods
AssignReference(AutomationReference)
Assign the reference and perform your custom class initialization.
Declaration
public override void AssignReference(AutomationReference reference)
Parameters
reference
Overrides
Implements
GetAllAppointmentsBySubject(string, bool)
Gets all appointment item with spesific subject.
Declaration
public 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
Implements
GetAllGroupHeadersByText(string, bool)
Gets all group header by spesific text.
Declaration
public 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
Implements
GetAppointmentBySubject(string, bool)
Gets spesific appointment item by its subject.
Declaration
public 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
Implements
GetGroupHeaderByText(string, bool)
Gets spesific group header by its text.
Declaration
public 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
Implements