section.js

"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.sectionRemoveHeader = exports.sectionProperties = exports.sectionExpandAll = exports.sectionExpand = exports.sectionDefineEditors = exports.sectionCollapseAll = exports.sectionCollapse = exports._notes = void 0;
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();
}
exports.sectionCollapse = sectionCollapse;
/**
 * Collapses all the sections in a document, page, form, or subform.
 * @throws {Error} no plans to implement
 */
function sectionCollapseAll() {
    return notesc.SectionCollapseAll();
}
exports.sectionCollapseAll = 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();
}
exports.sectionDefineEditors = sectionDefineEditors;
/**
 * Expands the current section in a document, form, or subform.
 * @throws {Error} no plans to implement
 */
function sectionExpand() {
    return notesc.SectionExpand();
}
exports.sectionExpand = sectionExpand;
/**
 * Expands all the sections in a document, page, form, or subform.
 * @throws {Error} no plans to implement
 */
function sectionExpandAll() {
    return notesc.SectionExpandAll();
}
exports.sectionExpandAll = 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();
}
exports.sectionProperties = 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();
}
exports.sectionRemoveHeader = sectionRemoveHeader;
//# sourceMappingURL=section.js.map