Lines Matching refs:style

87 …ice:document-content"]["office:automatic-styles"]["style:style"].map(style => [style["-style:name"…
88 isBold: (style["style:text-properties"]?.["-fo:font-weight"] === "bold"),
89 isItalic: (style["style:text-properties"]?.["-fo:font-style"] === "italic"),
90 isUnderline: (style["style:text-properties"]?.["-style:text-underline-style"] === "solid"),
91 isStrike: (style["style:text-properties"]?.["-style:text-line-through-style"] === "solid"),
92 …alignmentHorizontal: (style["style:paragraph-properties"]?.["-fo:text-align"] === "start") ? "left"
93 : (style["style:paragraph-properties"]?.["-fo:text-align"] === "end") ? "right"
94 : style["style:paragraph-properties"]?.["-fo:text-align"] ?? "left",
95 colorFont: style["style:text-properties"]?.["-fo:color"] ?? "#000000",
96 … colorBackground: style["style:table-cell-properties"]?.["-fo:background-color"] ?? "#FFFFFF",
241 let fontStyle = cell.style.font?.color;
243 return "#" + (cell.style.font.color.argb.slice(2) || "000000");
252 let fgStyle = cell.style.fill?.fgColor;
254 return "#" + (cell.style.fill?.fgColor?.argb?.slice(2) || "FFFFFF");
284 isBold: cell.style.font?.bold || false,
285 isItalic: cell.style.font?.italic || false,
286 isUnderline: cell.style.font?.underline || false,
287 isStrike: cell.style.font?.strike || false,
288 alignmentHorizontal: cell.style?.alignment?.horizontal || "left",
301 isBold: cell.style.font?.bold || false,
302 isItalic: cell.style.font?.italic || false,
303 isUnderline: cell.style.font?.underline || false,
304 isStrike: cell.style.font?.strike || false,
305 alignmentHorizontal: cell.style?.alignment?.horizontal || "left",