PublicAPI.CRM.Relationship.CreateMeeting ELMA API Documentation
Create Meeting. Creates an object without saving to the database
 
 
Syntax

public RelationshipMeeting CreateMeeting()

Return Value

Type: RelationshipMeeting
Meeting
Examples

//create a meeting 
var myMeeting = PublicAPI.CRM.Relationship.CreateMeeting();

// myMeeting - created meeting 

//WARNING!! A meeting is created without a name. For correct work with the meeting, you should 
//specify its name and save the object to the database
myMeeting.Theme = "Meeting Name";
myMeeting.Save();
See Also