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

SubTask

Class

SubTask class. SubTasks can be added to a task card. They have Completed and Description properties.

Definition

Namespace:Telerik.WinControls.UI.TaskBoard

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class SubTask

Inheritance: objectSubTask

Constructors

Default contructor. Set the Owner, if using this constructor.

C#
public SubTask()

Constructor

C#
public SubTask(RadTaskCardElement owner)
Parameters:ownerRadTaskCardElement

Owner RadTaskCardElement element of the sub task.

Properties

True, if the sub-task is completed, false otherwise.

C#
public bool Completed { get; set; }

Description of the sub-task.

C#
public string Description { get; set; }

Owner RadTaskCardElement element of the sub task.

C#
public RadTaskCardElement Owner { set; }