"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.layoutProperties = exports.layoutElementSendToBack = exports.layoutElementProperties = exports.layoutElementBringToFront = exports.layoutAddText = exports.layoutAddGraphic = exports._notes = void 0;
const tslib_1 = require("tslib");
/**
* @file Layout
* @module layout
* @category Layout
*/
const notesc = tslib_1.__importStar(require("../notes/layout"));
exports._notes = notesc;
/**
* Adds a graphic from the Clipboard to a layout region.
* @throws {Error} No plans to implement
*/
function layoutAddGraphic() {
return notesc.LayoutAddGraphic();
}
exports.layoutAddGraphic = layoutAddGraphic;
/**
* Creates a static text box in a layout region.
* @throws {Error} No plans to implement
*/
function layoutAddText() {
return notesc.LayoutAddText();
}
exports.layoutAddText = layoutAddText;
/**
* Brings the selected layout element to the front, which means it overlays any
* other layout elements that overlap it.
* @throws {Error} No plans to implement
*/
function layoutElementBringToFront() {
return notesc.LayoutElementBringToFront();
}
exports.layoutElementBringToFront = layoutElementBringToFront;
/**
* Displays the Properties box for the currently selected layout element.
* @throws {Error} No plans to implement
*/
function layoutElementProperties() {
return notesc.LayoutElementProperties();
}
exports.layoutElementProperties = layoutElementProperties;
/**
* Sends the selected layout element to the back, which means it displays
* underneath any other layout elements that overlap it.
* @throws {Error} No plans to implement
*/
function layoutElementSendToBack() {
return notesc.LayoutElementSendToBack();
}
exports.layoutElementSendToBack = layoutElementSendToBack;
/**
* Displays the Properties box for the currently selected layout region.
* @throws {Error} No plans to implement
*/
function layoutProperties() {
return notesc.LayoutProperties();
}
exports.layoutProperties = layoutProperties;
//# sourceMappingURL=layout.js.map