wordxml-builder
Version:
Librería TypeScript para construir documentos XML compatibles con Microsoft Word
24 lines (23 loc) • 756 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextDirection = exports.CellAlignment = void 0;
/**
* Alineación de una celda
*/
var CellAlignment;
(function (CellAlignment) {
CellAlignment["Top"] = "top";
CellAlignment["Center"] = "center";
CellAlignment["Bottom"] = "bottom";
CellAlignment["Both"] = "both";
})(CellAlignment || (exports.CellAlignment = CellAlignment = {}));
/**
* Dirección del texto en una celda
*/
var TextDirection;
(function (TextDirection) {
TextDirection["LeftToRight"] = "lr";
TextDirection["RightToLeft"] = "rl";
TextDirection["TopToBottom"] = "tb";
TextDirection["BottomToTop"] = "bt";
})(TextDirection || (exports.TextDirection = TextDirection = {}));