Yerleştirme
Yerleştirme işlemi, uygulamayı web sitenize dahil etmenin basit bir yoludur. Aşağıdaki kodu web sitenize ekleyin:
Şeçenekler
Seçenek | Tür | Varsayılan | Tanım |
---|---|---|---|
kaydet | Boolean (true, false) | true | Kaydetmeyi etkinleştirin. Eğer devre dışı bırakılırsa, yalnızca bir çıkış düğmesi gösterilir |
editable | Boolean (true, false) | true | Düzenlemeyi etkinleştir. Eğer devre dışı bırakılırsa, belge salt okunur olur |
dil | String (…, system, user) | system | Belge dili. Eğer sistem ise, dil tarayıcıdan algılanacaktır. Eğer kullanıcı ise, dil kullanıcıların tercihine göre ayarlanacaktır |
Etkinlikler
Nasıl kullanılacağına dair örnekler:
kaydet
The
save
event is emitted when the user clicks the save button.
Parametreler:
data
(TypeList<int>
): The data of the document.
çıkış
The
exit
event is emitted when the user clicks the exit button.
Parametreler:
data
(TypeList<int>
): The data of the document.
change
The
change
event is emitted when the user changes the document.
Parametreler:
data
(TypeList<int>
): The data of the document.
Yöntemler
Nasıl kullanılacağına dair örnekler:
getData
The
getData
method returns the data of the document.
Parametre yok.
Returns: List<int>
setData
The
setData
method sets the data of the document.
Parametreler:
data
(TypeList<int>
): The data of the document.
render
The
render
method renders the document to a png image.
Parametreler:
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.
Parametreler:
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)