AsposePageAbout

AsposeFontAbout function

Get info about Product.

function AsposePageAbout()

Return value

JSON object

FieldDescription
errorCodecode error (0 no error)
errorTexttext error ("" no error)
productProduct name
versionProduct version
islicensedProduct is licensed
const AsposePage = require('asposepagenodejs');

console.log("Aspose.Page for Node.js via C++ examples.");

AsposePage().then(AsposePageModule => {

    //PageAbout - Get info about Product
    const json = AsposePageModule.AsposePageAbout();
    console.log("PageAbout => %O",  json.errorCode == 0 ? JSON.parse(JSON.stringify(json).replace('"errorCode":0,"errorText":"",','')) : json.errorText);
},
    reason => {console.log(`The unknown error has occurred: ${reason}`);}
);