ClassRadClock
Represents the RadClock for Silverlight control wrapper.
Definition
Namespace:Telerik.WebAii.Controls.Xaml
Assembly:Telerik.WebAii.Controls.Xaml.dll
Syntax:
public class RadClock : ItemsControl, IAutomationPeer, IPeerConverter, IRadClock, IControl, IFrameworkElement, ITargetElement
Inheritance: objectAutomationObject<FrameworkElement>FrameworkElementSilverlightTestElementControlItemsControlRadClock
Derived Classes:
Implements:
Inherited Members
Constructors
RadClock()
Initializes a new instance of the RadClock class.
Declaration
public RadClock()
Properties
ItemElements
Get the list of clock items.
Declaration
public IList<IRadClockItem> ItemElements { get; }
Property Value
Implements
Items
Get the list of clock items.
Declaration
[Obsolete("The property is deprecated. Please use .ItemElements instead.")]
public IList<RadClockItem> Items { get; }
Property Value
SelectedTime
Gets the clock selected time via an automation property.
Methods
AssignReference(AutomationReference)
Assign the reference and perform your custom class initialization.
Declaration
public override void AssignReference(AutomationReference reference)
Parameters
reference
Overrides
Implements
GetItemByText(string)
Gets the ClockItem with given text.
Declaration
public IRadClockItem GetItemByText(string itemText)
Parameters
itemText
The item text to locate
Returns
Exceptions
Thrown when a clock item with the given text cannot be found.
Implements
SelectTime(string)
Simulates user clicking on the item with given text to select that time.
Declaration
public void SelectTime(string itemText)
Parameters
itemText
The item text to locate and select.
Implements