"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
/**
* @file Design
* @module design
* @category Design
*/
const notesc = tslib_1.__importStar(require("../notes/design"));
exports._notes = notesc;
/**
* Displays the Properties box for the current document.
* @throws {Error} No plans to implement
*/
exports.designDocumentInfo = () => {
return notesc.DesignDocumentInfo();
};
/**
* Displays the Properties box for the current form, subform, or page.
* @throws {Error} No plans to implement
*/
exports.designFormAttributes = () => {
return notesc.DesignFormAttributes();
};
/**
* Displays the Properties box for the currently selected field.
* @throws {Error} No plans to implement
*/
exports.designFormFieldDef = () => {
return notesc.DesignFormFieldDef();
};
/**
* Creates a new field on a form or subform.
* @throws {Error} No plans to implement
*/
exports.designFormNewField = () => {
return notesc.DesignFormNewField();
};
/**
* Displays the Design - Forms view of the current database.
* @throws {Error} No plans to implement
*/
exports.designForms = () => {
return notesc.DesignForms();
};
/**
* Turns a single-use field into a shared field.
* @throws {Error} No plans to implement
*/
exports.designFormShareField = () => {
return notesc.DesignFormShareField();
};
/**
* Displays the Insert Shared Field dialog box, where the user can select a shared
* field to place on the current form or subform.
* @throws {Error} No plans to implement
*/
exports.designFormUseField = () => {
return notesc.DesignFormUseField();
};
/**
* Displays the design pane and sets the Event edit control to Window Title, so you
* can define a formula for a form's window title.
* @throws {Error} No plans to implement
*/
exports.designFormWindowTitle = () => {
return notesc.DesignFormWindowTitle();
};
/**
* Displays the About document in Edit mode for the current database.
* @throws {Error} No plans to implement
*/
exports.designHelpAboutDocument = () => {
return notesc.DesignHelpAboutDocument();
};
/**
* Displays the Using document in Edit mode for the current database.
* @throws {Error} No plans to implement
*/
exports.designHelpUsingDocument = () => {
return notesc.DesignHelpUsingDocument();
};
/**
* Displays the Design Icon dialog box, where you can edit the icon for the
* currently selected database.
* @throws {Error} No plans to implement
*/
exports.designIcon = () => {
return notesc.DesignIcon();
};
/**
* Displays the Agents and Release 3 macros in the current database.
* @throws {Error} No plans to implement
*/
exports.designMacros = () => {
return notesc.DesignMacros();
};
/**
* Displays the Refresh Database Design dialog box, where the user can choose a
* server that contains the design template for the current database.
* @throws {Error} No plans to implement
*/
exports.designRefresh = () => {
return notesc.DesignRefresh();
};
/**
* Displays the Replace Database Design dialog box, where the user can choose a
* design template to replace that of the current database.
* @throws {Error} No plans to implement
*/
exports.designReplace = () => {
return notesc.DesignReplace();
};
/**
* Displays the Design - Shared Fields view in the current database.
* @throws {Error} No plans to implement
*/
exports.designSharedFields = () => {
return notesc.DesignSharedFields();
};
/**
* Displays the Design Synopsis dialog box so the user can select the types of
* information to be included in the synopsis.
* @throws {Error} No plans to implement
*/
exports.designSynopsis = () => {
return notesc.DesignSynopsis();
};
/**
* Creates a column in a view or folder, positioned after the last column.
* @throws {Error} No plans to implement
*/
exports.designViewAppendColumn = () => {
return notesc.DesignViewAppendColumn();
};
/**
* Displays the Properties box for the current view or folder.
* @throws {Error} No plans to implement
*/
exports.designViewAttributes = () => {
return notesc.DesignViewAttributes();
};
/**
* Displays the Properties box for the currently selected column.
* @throws {Error} No plans to implement
*/
exports.designViewColumnDef = () => {
return notesc.DesignViewColumnDef();
};
/**
* Displays or hides the action pane.
* @throws {Error} No plans to implement
*/
exports.designViewEditActions = () => {
return notesc.DesignViewEditActions();
};
/**
* Displays the Design Form Formula dialog box, where the user can define a formula
* that determines which form is used to display documents opened from a particular
* view or folder.
* @throws {Error} No plans to implement
*/
exports.designViewFormFormula = () => {
return notesc.DesignViewFormFormula();
};
/**
* Creates a new column before the currently selected column in a view or folder.
* @throws {Error} No plans to implement
*/
exports.designViewNewColumn = () => {
return notesc.DesignViewNewColumn();
};
/**
* Displays the Design - Views view in the current database.
* @throws {Error} No plans to implement
*/
exports.designViews = () => {
return notesc.DesignViews();
};
/**
* Displays the design pane and sets the Define control to View Selection, which
* allows you to define a selection formula to determine which documents are
* displayed in a view.
* @throws {Error} No plans to implement
*/
exports.designViewSelectFormula = () => {
return notesc.DesignViewSelectFormula();
};
//# sourceMappingURL=design.js.map