New to Telerik UI for WPFStart a free 30-day trial

Base interface for card - typical visual representation of a task.

Definition

Namespace:Telerik.Windows.Controls.TaskBoard

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public interface ITaskBoardCardModel : INotifyPropertyChanged

Derived Classes: TaskBoardCardModel

Inherited Members INotifyPropertyChanged.PropertyChanged

Properties

Gets or sets the assignee of the task.

C#
object Assignee { get; set; }

Gets or sets the task's category name.

C#
string CategoryName { get; set; }

Gets or sets the description of the task.

C#
string Description { get; set; }

Gets or sets the path to the icon image of the task.

C#
string IconPath { get; set; }

Gets or sets the Id of the task.

C#
string Id { get; set; }

Gets or sets a value indicating whether to show the category indicator.

C#
bool ShowCategoryIndicator { get; set; }

Gets or sets the state of the task.

C#
string State { get; set; }

Gets or sets the collection of tags associated to the task.

C#
IList<object> Tags { get; }

Gets or sets the title of the task.

C#
string Title { get; set; }