rosettajs_dist_lib_rosetta_section.js
"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports._notes = void 0;
exports.sectionCollapse = sectionCollapse;
exports.sectionCollapseAll = sectionCollapseAll;
exports.sectionDefineEditors = sectionDefineEditors;
exports.sectionExpand = sectionExpand;
exports.sectionExpandAll = sectionExpandAll;
exports.sectionProperties = sectionProperties;
exports.sectionRemoveHeader = sectionRemoveHeader;
const tslib_1 = require("tslib");
/**
* @file Section
* @module section
* @category Section
*/
const notesc = tslib_1.__importStar(require("../notes/section"));
exports._notes = notesc;
//-----------------------------
// Notes @Commands section
/**
* Collapses the current section in a document, form, or subform.
* @throws {Error} no plans to implement
*/
function sectionCollapse() {
return notesc.SectionCollapse();
}
/**
* Collapses all the sections in a document, page, form, or subform.
* @throws {Error} no plans to implement
*/
function sectionCollapseAll() {
return notesc.SectionCollapseAll();
}
/**
* Displays the Edit Section dialog box for the current section on a form.
* @throws {Error} no plans to implement
*/
function sectionDefineEditors() {
return notesc.SectionDefineEditors();
}
/**
* Expands the current section in a document, form, or subform.
* @throws {Error} no plans to implement
*/
function sectionExpand() {
return notesc.SectionExpand();
}
/**
* Expands all the sections in a document, page, form, or subform.
* @throws {Error} no plans to implement
*/
function sectionExpandAll() {
return notesc.SectionExpandAll();
}
/**
* On a form or subform, displays the Properties box for the selected section.
* @throws {Error} no plans to implement
*/
function sectionProperties() {
return notesc.SectionProperties();
}
/**
* Removes the contents of a section from the section. The contents are then displayed as they existed before the section was created.
* @throws {Error} no plans to implement
*/
function sectionRemoveHeader() {
return notesc.SectionRemoveHeader();
}
//# sourceMappingURL=section.js.map