CoAuthoringChatSendMessage

CoAuthoringChatSendMessage(sText)

Sends a message to the co-authoring chat.

Parameters:

Name Type Description
sText string

Message text.

Returns:

This method doesn't return any data.

Example

Copy code
window.Asc.plugin.executeMethod ("CoAuthoringChatSendMessage", [Asc.scope.meeting_info], function (isTrue) {
    if (isTrue)
        alert ("Meeting was created");
    else
        alert ("Meeting was create, please update SDK for checking info about created meeting in chat.");
});