Get Started
Documentation
Macros
More information
|
window.Asc.plugin.info.mmToPx read-onlyDescription
Defines the millimeter to pixel conversion ratio for the OLE object vector drawing. The height values and width values of the OLE object are returned in millimeters, so it is necessary to convert them to pixels for raster representation. Returns
Type number Example
window.Asc.plugin.button = function (id) { var _info = window.Asc.plugin.info; var _method = (_info.objectId === undefined) ? "asc_addOleObject" : "asc_editOleObject"; _info.width = _info.width ? _info.width : 70; _info.height = _info.height ? _info.height : 70; _info.widthPix = (_info.mmToPx * _info.width) >> 0; _info.heightPix = (_info.mmToPx * _info.height) >> 0; _info.imgSrc = window.g_board.getResult(_info.widthPix, _info.heightPix).image; _info.data = window.g_board.getData(); var _code = "Api." + _method + "(" + JSON.stringify(_info) + ");"; this.executeCommand("close", _code); }; |