Returns information about all the forms that have been added to the document.
This method doesn't have any parameters.
window.Asc.plugin.executeMethod ("GetAllForms", null, function (data) { for (var i = 0; i < data.length; i++) { if (data[i].Tag == 11) { this.Asc.plugin.executeMethod ("SelectContentControl", [data[i].InternalId]); break; } } });