I want to add some custom presentation API , by modify the source codes of document builder sdkjs.
I find the source codes is written by JavaScript, rather than TypeScript.
I try to read the codes. But can’t understand how these global variable import to context.
Please tell me how to find the definition of global variable. I want to know all the properties and methods of them.
// global.js
var Asc;
var AscDFH;
var AscCH;
var AscFormat;
var AscFonts;
var AscCommon;
var AscCommonWord;
var AscCommonExcel;
var AscCommonSlide;
var AscBuilder;
var AscWord;
var AscMath;
var AscJsonConverter;
var AscCrypto;
var AscOForm;
Do you mean that after adding an image via Document Builder methods you want to set it to be undeletable but with possibility to change the text inside the shape in the editors interface? If so, have you ever seen such possibility in other processors?
By the way, about global variables definitions: I have found out that mentioned variables are used for correct work of Google Closure Complier to minimize scripts and nothing else. I’m afraid there is no way to use them on practice.