Gets or sets the email of the contact.
Namespace: MindFusion.Scheduling
Assembly: Contact.js
SyntaxJavaScript
Copy Code
|
|---|
get email() {} |
A String that represents the e-mail.
ExampleThe following code creates a contact and adds it to the contacts collection of the schedule. The code assumes you have initialized a <div> element with id “calendar” in a web page that references the JavaScript file which contains this code.
JavaScript
Copy Code
|
|---|
var p = MindFusion.Scheduling; // create a new instance of the calendar // add some contacts to the schedule.contacts collection calendar.schedule.contacts.add(resource); |
See Also