Lines Matching refs:layout

14377 			var layout = node.layout;
14379 if (typeof node.layout === 'string' || node instanceof String) {
14380 layout = tableLayouts[layout];
14394 return pack(defaultLayout, layout);
14397 function getOffsets(layout) {
14403 var lOffset = prevRightPadding + layout.vLineWidth(i, node) + layout.paddingLeft(i, node);
14406 prevRightPadding = layout.paddingRight(i, node);
14409 totalOffset += prevRightPadding + layout.vLineWidth(node.table.widths.length, node);
16734 this.layout = tableNode._layout;
16771 …var paddings = self.layout.paddingLeft(i, self.tableNode) + self.layout.paddingRight(i, self.table…
16772 var lBorder = self.layout.vLineWidth(i, self.tableNode);
16794 this.topLineWidth = this.layout.hLineWidth(rowIndex, this.tableNode);
16795 this.rowPaddingTop = this.layout.paddingTop(rowIndex, this.tableNode);
16796 this.bottomLineWidth = this.layout.hLineWidth(rowIndex+1, this.tableNode);
16797 this.rowPaddingBottom = this.layout.paddingBottom(rowIndex, this.tableNode);
16813 var lineWidth = this.layout.hLineWidth(lineIndex, this.tableNode);
16841 …lineColor: typeof this.layout.hLineColor === 'function' ? this.layout.hLineColor(lineIndex, this.t…
16853 var width = this.layout.vLineWidth(vLineIndex, this.tableNode);
16862 …lineColor: typeof this.layout.vLineColor === 'function' ? this.layout.vLineColor(vLineIndex, this.…
16876 writer.context().moveDown(this.layout.paddingBottom(rowIndex, this.tableNode));
16930 var wBorder = this.layout.vLineWidth(colIndex, this.tableNode);
16946 if (willBreak && this.layout.hLineWhenBroken !== false) {
16949 if(rowBreakWithoutHeader && this.layout.hLineWhenBroken !== false) {
27671 this.layout = options.layout || 'portrait';
27683 this.width = dimensions[this.layout === 'portrait' ? 0 : 1];
27684 this.height = dimensions[this.layout === 'portrait' ? 1 : 0];