Excel.ReadingOrder enum

注釈

[ API セット: ExcelApi 1.7 ]

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/42-range/style.yaml

await Excel.run(async (context) => {
    let style = context.workbook.styles.getItem("Diagonal Orientation Style");            
    style.load("textOrientation, horizontalAlignment, autoIndent, readingOrder, wrapText, includeProtection, shrinkToFit, locked");

    await context.sync();

    console.log("Orientation: " + style.textOrientation);
    console.log("Horizontal alignment: " + style.horizontalAlignment);
    console.log("Add indent: " + style.autoIndent);
    console.log("Reading order: " + style.readingOrder);
    console.log("Wrap text: " + style.wrapText);
    console.log("Include protection: " + style.includeProtection);
    console.log("Shrink to fit: " + style.shrinkToFit);
    console.log("Style locked: " + style.locked);
});

フィールド

context = "Context"

読みの順序は入力された最初の文字の言語によって決まります。 右から左に記述する言語が最初に入力された場合、読みの順序は右から左になります。 左から右に記述する言語が最初に入力された場合、読みの順序は左から右になります。

leftToRight = "LeftToRight"

左から右の読み取り順

rightToLeft = "RightToLeft"

右から左の読み取り順