Search
Task.estimatedDuration Property
See Also
 






Gets or sets the estimated duration of the Task.

Namespace: MindFusion.Scheduling
File: Task.js

 Syntax

JavaScript  Copy Code

get estimatedDuration() {}

 Property Value

A Number that specifies the duration of the task measured in minutes.

 Example

The following code creates a new Task in 10 days with high priority, estimated duration of 5 hours (300 minutes) and adds it to the tasks list of a schedule:

JavaScript  Copy Code

var p = MindFusion.Scheduling;
var task;

// create a task
task = new p.Task();
task.subject = "Math Test";
task.dueDate = p.DateTime.today().addDays(10);
task.details = "Learn well Molecular Biology by M. Robertson";
//the exam would probably take a total of up to 5 hours
task.estimatedDuration = 300;
task.priority = p.TaskPriority.High;
//add it to the schedule.tasks collection
calendar.schedule.tasks.add(resource);

 See Also