Search
Location Class
See Also
 






Specifies data that identifies a location.

Namespace: MindFusion.Scheduling
File: Location.js

 Syntax

JavaScript  Copy Code

// class
Location.prototype = {}

 Example

The following code creates a new location and adds it to the list with locations of a calendar schedule.

JavaScript  Copy Code

var p = MindFusion.Scheduling;

location = new p.Location();
location.name = name;
calendar.schedule.locations.add(location);

 Inheritance Hierarchy

MindFusion.Scheduling.Resource
    MindFusion.Scheduling.Location

 See Also