Interface
IAppointmentsPanel

The ScheduleView AppointmentsPanel wrapper for SL/Wpf interface.

Definition

Namespace:Telerik.WebAii.Controls.Xaml

Assembly:Telerik.WebAii.Controls.Xaml.dll

Syntax:

cs-api-definition
public interface IAppointmentsPanel : IControl, IFrameworkElement, ITargetElement

Derived Classes: AppointmentsPanelAppointmentsPanel

Inherited Members IControl.IsEnabledIFrameworkElement.CastAs<T>()IFrameworkElement.Parent<T>()IFrameworkElement.SetProxy(bool)IFrameworkElement.SetUid(string)IFrameworkElement.SetFindInfo(VisualFindInfo)IFrameworkElement.SetXamlTag(string)IFrameworkElement.AssignReference(AutomationReference)IFrameworkElement.SetFocus()IFrameworkElement.GetAutomationProperty(string)IFrameworkElement.GetProperty<T>(string)IFrameworkElement.GetPropertyTypeSafe(string)IFrameworkElement.SetProperty(string, object)IFrameworkElement.ScrollToVisible()IFrameworkElement.UserIFrameworkElement.FindIFrameworkElement.WaitIFrameworkElement.NameIFrameworkElement.AbsoluteSiblingTagIndexIFrameworkElement.ActualWidthIFrameworkElement.ActualHeightIFrameworkElement.TextIFrameworkElement.ToolTipTextIFrameworkElement.TextBlockContentIFrameworkElement.TextLiteralContentIFrameworkElement.ComputedVisibilityIFrameworkElement.UidITargetElement.Match(IFindExpression)ITargetElement.SetDepth(int)ITargetElement.AddChildNode(ITargetElement)ITargetElement.SetClosingTag(ITargetElement)ITargetElement.GetChildren()ITargetElement.GetParent()ITargetElement.GetHostParent()ITargetElement.SetParent(ITargetElement)ITargetElement.Refresh()ITargetElement.GetUniqueHashCode()ITargetElement.GetRectangle()ITargetElement.Capture()ITargetElement.CaptureImage()ITargetElement.GetStringPresentation()ITargetElement.TechnologyTypeITargetElement.DepthITargetElement.IsTestRegionITargetElement.ParsedElementITargetElement.Host

Properties

AppointmentItems

Get the list of Appointment items.

Declaration

cs-api-definition
IList<IAppointmentItem> AppointmentItems { get; }

Property Value

IList<IAppointmentItem>

GroupHeaders

Get the list of GroupHeader items.

Declaration

cs-api-definition
IList<IGroupHeader> GroupHeaders { get; }

Property Value

IList<IGroupHeader>

Methods

GetAllAppointmentsBySubject(string, bool)

Gets all appointment item with spesific subject.

Declaration

cs-api-definition
IList<IAppointmentItem> GetAllAppointmentsBySubject(string text, bool isExactMatch)

Parameters

text

string

The text that should be contained in the subject of the appointment.

isExactMatch

bool

Indicates wheter to search by containing text or by exact match

Returns

IList<IAppointmentItem>

GetAllGroupHeadersByText(string, bool)

Gets all group header by spesific text.

Declaration

cs-api-definition
IList<IGroupHeader> GetAllGroupHeadersByText(string text, bool isExactMatch)

Parameters

text

string

The text of the group header.

isExactMatch

bool

Indicates wheter to search by containing text or by exact match

Returns

IList<IGroupHeader>

GetAppointmentBySubject(string, bool)

Gets spesific appointment item by its subject.

Declaration

cs-api-definition
IAppointmentItem GetAppointmentBySubject(string subject, bool isExactMatch)

Parameters

subject

string

The subject of the appointment.

isExactMatch

bool

Indicates wheter to search by containing text or by exact match

Returns

IAppointmentItem

GetGroupHeaderByText(string, bool)

Gets spesific group header by its text.

Declaration

cs-api-definition
IGroupHeader GetGroupHeaderByText(string text, bool isExactMatch)

Parameters

text

string

The text of the group header.

isExactMatch

bool

Indicates wheter to search by containing text or by exact match

Returns

IGroupHeader