"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.objectProperties = exports.objectOpen = exports.objectDisplayAs = exports._notes = void 0;
const tslib_1 = require("tslib");
/**
* @file Object
* @module object
* @category Object
*/
const notesc = tslib_1.__importStar(require("../notes/object"));
exports._notes = notesc;
//-----------------------------
// Notes @Commands object
/**
* Displays the Display As dialog box, which lets you change the display settings
* of the selected OLE object.
* @throws {Error} no plans to implement
*/
function objectDisplayAs() {
return notesc.ObjectDisplayAs();
}
exports.objectDisplayAs = objectDisplayAs;
/**
* Opens an OLE object for editing.
* @throws {Error} no plans to implement
*/
function objectOpen() {
return notesc.ObjectOpen();
}
exports.objectOpen = objectOpen;
/**
* Displays the Properties box for the selected OLE object.
* @throws {Error} no plans to implement
*/
function objectProperties() {
return notesc.ObjectProperties();
}
exports.objectProperties = objectProperties;
//# sourceMappingURL=object.js.map