Resource
Represents a resource that can be assigned to scheduler appointments in RadScheduler. Resources enable grouping and categorization of appointments by person, room, equipment, or any other entity.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.Scheduler.dll
Syntax:
public class Resource : IResource, IDataBoundItem, INotifyPropertyChanged
Inheritance: objectResource
Implements:
Constructors
Properties
Gets or sets the color associated with the resource that is used for visual identification and theming of appointments assigned to this resource.
public Color Color { get; set; }
Implements:
Gets the data source object that this resource is bound to when using data binding scenarios.
public object DataItem { get; }
Implements:
Gets or sets the unique identifier of the resource used for data binding and event association.
public EventId Id { get; set; }
Implements:
Gets or sets the image associated with the resource that can be displayed in the scheduler interface.
public Image Image { get; set; }
Implements:
Gets or sets the display name of the resource that will be shown in the scheduler interface.
public string Name { get; set; }
Implements:
Methods
Raises the PropertyChanged event for the specified property name.
protected virtual void OnPropertyChanged(string propertyName)
The name of the property that changed.
Events
Occurs when a property value changes, enabling data binding scenarios.
public event PropertyChangedEventHandler PropertyChanged
Implements: