Embed
Embutir é uma maneira simples de incluir o aplicativo em seu site. Adicione o seguinte código ao seu site:
Opções
Alternativa | tipo | Padrão | Descrição |
---|---|---|---|
salvar | Boolean (true, false) | true | Habilitar salvamento. Se desativado, somente um botão de saída será mostrado |
editable | Boolean (true, false) | true | Habilitar edição. Se desativado, o documento será somente leitura |
iDIOMA | String (…, sistema, usuário) | system | Idioma do documento. Se o sistema, o idioma será detectado do navegador. Se o usuário, o idioma será ajustado para as preferências de usuários |
Eventos
Exemplo de como usá-lo:
salvar
The
save
event is emitted when the user clicks the save button.
Parâmetros:
data
(TypeList<int>
): The data of the document.
sair
The
exit
event is emitted when the user clicks the exit button.
Parâmetros:
data
(TypeList<int>
): The data of the document.
change
The
change
event is emitted when the user changes the document.
Parâmetros:
data
(TypeList<int>
): The data of the document.
Métodos
Exemplo de como usá-lo:
getData
The
getData
method returns the data of the document.
Nenhum parâmetro.
Returns: List<int>
setData
The
setData
method sets the data of the document.
Parâmetros:
data
(TypeList<int>
): The data of the document.
render
The
render
method renders the document to a png image.
Parâmetros:
width
(TypeNumber
): The width of the image.height
(TypeNumber
): The height of the image.scale
(TypeNumber
): The scale of the image.renderBackground
(TypeBoolean
): If true, the background will be rendered.
Returns: String
(Base64 encoded image)
renderSVG
The
renderSVG
method renders the document to a svg image.
Parâmetros:
width
(TypeNumber
): The width of the image.height
(TypeNumber
): The height of the image.renderBackground
(TypeBoolean
): If true, the background will be rendered.
Returns: String
(SVG)