"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.navPrevUnread = exports.navPrevSelected = exports.navPrevMain = exports.navPrev = exports.navNextUnread = exports.navNextSelected = exports.navNextMain = exports.navNext = exports.navigatorTest = exports.navigatorProperties = exports.navigateToBacklink = exports.navigatePrevUnread = exports.navigatePrevSelected = exports.navigatePrevMain = exports.navigatePrevHighlight = exports.navigatePrev = exports.navigateNextUnread = exports.navigateNextSelected = exports.navigateNextMain = exports.navigateNextHighlight = exports.navigateNext = exports._notes = void 0;
const tslib_1 = require("tslib");
/**
* @file Navigate
* @module navigate
* @category Navigate
*/
const notesc = tslib_1.__importStar(require("../notes/navigate"));
exports._notes = notesc;
//-----------------------------
// Notes @Commands navigate
/**
* Navigates to the next document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navigateNext() {
return notesc.NavigateNext();
}
exports.navigateNext = navigateNext;
/**
* Navigates to the next full-text search highlight within a document, working from
* left to right and beginning to end.
* @throws {Error} no plans to implement
*/
function navigateNextHighlight() {
return notesc.NavigateNextHighlight();
}
exports.navigateNextHighlight = navigateNextHighlight;
/**
* Navigates to the next main document in the current view.
* @throws {Error} no plans to implement
*/
function navigateNextMain() {
return notesc.NavigateNextMain();
}
exports.navigateNextMain = navigateNextMain;
/**
* Navigates to the next selected document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navigateNextSelected() {
return notesc.NavigateNextSelected();
}
exports.navigateNextSelected = navigateNextSelected;
/**
* Navigates to the next unread document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navigateNextUnread() {
return notesc.NavigateNextUnread();
}
exports.navigateNextUnread = navigateNextUnread;
/**
* Navigates to the previous document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navigatePrev() {
return notesc.NavigatePrev();
}
exports.navigatePrev = navigatePrev;
/**
* Navigates to the previous full-text search highlight within a document, working
* from right to left and end to beginning.
* @throws {Error} no plans to implement
*/
function navigatePrevHighlight() {
return notesc.NavigatePrevHighlight();
}
exports.navigatePrevHighlight = navigatePrevHighlight;
/**
* Navigates to the previous main document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navigatePrevMain() {
return notesc.NavigatePrevMain();
}
exports.navigatePrevMain = navigatePrevMain;
/**
* Navigates to the previous selected document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navigatePrevSelected() {
return notesc.NavigatePrevSelected();
}
exports.navigatePrevSelected = navigatePrevSelected;
/**
* Navigates to the previous unread document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navigatePrevUnread() {
return notesc.NavigatePrevUnread();
}
exports.navigatePrevUnread = navigatePrevUnread;
/**
* Returns to the document from which you launched the current document.
* @throws {Error} no plans to implement
*/
function navigateToBacklink() {
return notesc.NavigateToBacklink();
}
exports.navigateToBacklink = navigateToBacklink;
/**
* Displays the Properties box for a navigator.
* @throws {Error} no plans to implement
*/
function navigatorProperties() {
return notesc.NavigatorProperties();
}
exports.navigatorProperties = navigatorProperties;
/**
* Opens a navigator in Testing mode, so you can test its hotspots, formulas, and
* scripts. Selecting this command again puts the navigator back into Design mode.
* @throws {Error} no plans to implement
*/
function navigatorTest() {
return notesc.NavigatorTest();
}
exports.navigatorTest = navigatorTest;
/**
* Navigates to the next document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navNext() {
return notesc.NavNext();
}
exports.navNext = navNext;
/**
* Navigates to the next main document in the current view.
* @throws {Error} no plans to implement
*/
function navNextMain() {
return notesc.NavNextMain();
}
exports.navNextMain = navNextMain;
/**
* Navigates to the next selected document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navNextSelected() {
return notesc.NavNextSelected();
}
exports.navNextSelected = navNextSelected;
/**
* Navigates to the next unread document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navNextUnread() {
return notesc.NavNextUnread();
}
exports.navNextUnread = navNextUnread;
/**
* Navigates to the previous document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navPrev() {
return notesc.NavPrev();
}
exports.navPrev = navPrev;
/**
* Navigates to the previous main document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navPrevMain() {
return notesc.NavPrevMain();
}
exports.navPrevMain = navPrevMain;
/**
* Navigates to the previous selected document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navPrevSelected() {
return notesc.NavPrevSelected();
}
exports.navPrevSelected = navPrevSelected;
/**
* Navigates to the previous unread document in the current view or folder.
* @throws {Error} no plans to implement
*/
function navPrevUnread() {
return notesc.NavPrevUnread();
}
exports.navPrevUnread = navPrevUnread;
//# sourceMappingURL=navigate.js.map