Search
Location.address Property
See Also
 






Gets or sets the address of the Location.

Namespace: MindFusion.Scheduling
File: Location.js

 Syntax

JavaScript  Copy Code

get address() {}

 Property Value

A String that represents the address.

 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;
location.address = "1, King’s road, Cambridge, MA";
calendar.schedule.locations.add(location);

 See Also