Initializing help system before first use

AttachmentEditor

Contains information about a scenario or app attachment editor.

Method summary

name description
open Open the attachment editor dialog for the attachment this editor belongs to

Methods

method
open ( ) → {Promise}

Open the attachment editor dialog for the attachment this editor belongs to

details
Returns:
returns table
Type Description
type
Promise
promise, which is resolved when editor is closed;
Example
examples
attachmentEditor.open()
    .then(function (status) {
        console.log(status);
    });
Back to Top