Enum HorizontalAlignment

가로정렬

지원되는 가로 정렬 유형의 열거형입니다.

enum을 호출하려면 상위 클래스, 이름, 속성을 호출합니다. 예를 들면 DocumentApp.HorizontalAlignment.LEFT입니다.

HorizontalAlignment 열거형을 사용하여 Paragraph 콘텐츠의 정렬을 조작합니다.

const body =
    DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();

// Insert a paragraph and a table at the start of the tab.
const par1 = body.insertParagraph(0, 'Center');
const table = body.insertTable(1, [['Left', 'Right']]);
const par2 = table.getCell(0, 0).getChild(0).asParagraph();
const par3 = table.getCell(0, 0).getChild(0).asParagraph();

// Center align the first paragraph.
par1.setAlignment(DocumentApp.HorizontalAlignment.CENTER);

// Left align the first cell.
par2.setAlignment(DocumentApp.HorizontalAlignment.LEFT);

// Right align the second cell.
par3.setAlignment(DocumentApp.HorizontalAlignment.RIGHT);

속성

속성유형설명
LEFTEnum왼쪽 정렬 옵션
CENTEREnum가운데 정렬 옵션
RIGHTEnum오른쪽 정렬 옵션
JUSTIFYEnumjustify-alignment 옵션