Interface
ITaskBoardCardModel

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

Definition

Namespace:Telerik.Windows.Controls.TaskBoard

Assembly:Telerik.Windows.Controls.dll

Syntax:

cs-api-definition
public interface ITaskBoardCardModel : INotifyPropertyChanged

Inherited Members INotifyPropertyChanged.PropertyChanged

Properties

Assignee

Gets or sets the assignee of the task.

Declaration

cs-api-definition
object Assignee { get; set; }

Property Value

object

CategoryName

Gets or sets the task's category name.

Declaration

cs-api-definition
string CategoryName { get; set; }

Property Value

string

Description

Gets or sets the description of the task.

Declaration

cs-api-definition
string Description { get; set; }

Property Value

string

IconPath

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

Declaration

cs-api-definition
string IconPath { get; set; }

Property Value

string

Id

Gets or sets the Id of the task.

Declaration

cs-api-definition
string Id { get; set; }

Property Value

string

ShowCategoryIndicator

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

Declaration

cs-api-definition
bool ShowCategoryIndicator { get; set; }

Property Value

bool

State

Gets or sets the state of the task.

Declaration

cs-api-definition
string State { get; set; }

Property Value

string

Tags

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

Declaration

cs-api-definition
IList<object> Tags { get; }

Property Value

IList<object>

Title

Gets or sets the title of the task.

Declaration

cs-api-definition
string Title { get; set; }

Property Value

string