Class
TaskBoardCardModel

Basic ITaskBoardCardModel implementation - default model for tasks represented in a card-like fashion. Can be used to populate the ItemsSource of the RadTaskBoard. The default ItemTemplateSelector of the RadTaskBoard has predefined template for ITaskBoardCardModels.

Definition

Constructors

TaskBoardCardModel()

Initializes a new instance of the TaskBoardCardModel class.

Declaration

cs-api-definition
public TaskBoardCardModel()

Properties

Assignee

Gets or sets the assignee of the task.

Declaration

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

Property Value

object

Implements ITaskBoardCardModel.Assignee

CategoryName

Gets or sets the category name of the task.

Declaration

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

Property Value

string

Implements ITaskBoardCardModel.CategoryName

Description

Gets or sets the description of the task.

Declaration

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

Property Value

string

Implements ITaskBoardCardModel.Description

IconPath

Gets or sets the icon path of the task.

Declaration

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

Property Value

string

Implements ITaskBoardCardModel.IconPath

Id

Gets or sets the id of the task.

Declaration

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

Property Value

string

Implements ITaskBoardCardModel.Id

ShowCategoryIndicator

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

Declaration

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

Property Value

bool

Implements ITaskBoardCardModel.ShowCategoryIndicator

State

Gets or sets the state of the task.

Declaration

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

Property Value

string

Implements ITaskBoardCardModel.State

Tags

Gets the tags associated to the task.

Declaration

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

Property Value

IList<object>

Implements ITaskBoardCardModel.Tags

Title

Gets or sets the title of the task.

Declaration

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

Property Value

string

Implements ITaskBoardCardModel.Title

Methods

ToString()

Gets a string representation of this card model.

Declaration

cs-api-definition
public override string ToString()

Returns

string

Overrides object.ToString()