Interface ITaskBoardCardModel
Base interface for card - typical visual representation of a task.
Namespace: Telerik.Windows.Controls.TaskBoard
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface ITaskBoardCardModel : INotifyPropertyChanged
Properties
Assignee
Gets or sets the assignee of the task.
Declaration
object Assignee { get; set; }
Property Value
System.Object
|
CategoryName
Gets or sets the task's category name.
Declaration
string CategoryName { get; set; }
Property Value
System.String
|
Description
Gets or sets the description of the task.
Declaration
string Description { get; set; }
Property Value
System.String
|
IconPath
Gets or sets the path to the icon image of the task.
Declaration
string IconPath { get; set; }
Property Value
System.String
|
Id
Gets or sets the Id of the task.
Declaration
string Id { get; set; }
Property Value
System.String
|
ShowCategoryIndicator
Gets or sets a value indicating whether to show the category indicator.
Declaration
bool ShowCategoryIndicator { get; set; }
Property Value
System.Boolean
|
State
Gets or sets the state of the task.
Declaration
string State { get; set; }
Property Value
System.String
|
Tags
Gets or sets the collection of tags associated to the task.
Declaration
IList<object> Tags { get; }
Property Value
System.Collections.Generic.IList<System.Object>
|
Title
Gets or sets the title of the task.
Declaration
string Title { get; set; }
Property Value
System.String
|