"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.refreshParentNote = exports.refreshHideFormulas = exports.refreshFrame = exports._notes = void 0;
const tslib_1 = require("tslib");
/**
* @file Refresh
* @module refresh
* @category Refresh
*/
const notesc = tslib_1.__importStar(require("../notes/refresh"));
exports._notes = notesc;
//-----------------------------
// Notes @Commands refresh
/**
* Refreshes the specified frame in a frameset.
* @throws {Error} no plans to implement
*/
function refreshFrame() {
return notesc.RefreshFrame();
}
exports.refreshFrame = refreshFrame;
/**
* Refreshes only the hidden formulas in a document or view.
* @throws {Error} no plans to implement
*/
function refreshHideFormulas() {
return notesc.RefreshHideFormulas();
}
exports.refreshHideFormulas = refreshHideFormulas;
/**
* This formula sends the values entered in the dialog box to the parent document.
* A designer can update a parent note and close the dialog box without having to
* use the OK button on the dialog box.
* @throws {Error} no plans to implement
*/
function refreshParentNote() {
return notesc.RefreshParentNote();
}
exports.refreshParentNote = refreshParentNote;
//# sourceMappingURL=refresh.js.map