UNPKG

@officesdk/web

Version:

Web JS SDK for the Office SDK

38 lines (37 loc) 1.12 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DatabaseTableSelectionType = void 0; /** * Defines the types of selections that can be made in a database table */ var DatabaseTableSelectionType; (function (DatabaseTableSelectionType) { /** * Single cell selection */ DatabaseTableSelectionType["Cell"] = "Cell"; /** * Row selection */ DatabaseTableSelectionType["Row"] = "Row"; /** * Column selection */ DatabaseTableSelectionType["Column"] = "Column"; /** * Entire table selection */ DatabaseTableSelectionType["All"] = "All"; /** * Multiple non-contiguous rows selection */ DatabaseTableSelectionType["MultipleRows"] = "MultipleRows"; /** * Rectangular range selection (multiple cells) */ DatabaseTableSelectionType["Range"] = "Range"; /** * Multiple contiguous columns selection */ DatabaseTableSelectionType["MultipleColumns"] = "MultipleColumns"; })(DatabaseTableSelectionType || (exports.DatabaseTableSelectionType = DatabaseTableSelectionType = {}));