Enum VerticalAlignment

세로정렬

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

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

VerticalAlignment 열거형을 사용하여 테이블 셀의 수직 정렬을 설정합니다.

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

// Append table containing two cells.
const table = body.appendTable([['Top', 'Center', 'Bottom']]);

// Align the first cell's contents to the top.
table.getCell(0, 0).setVerticalAlignment(DocumentApp.VerticalAlignment.TOP);

// Align the second cell's contents to the center.
table.getCell(0, 1).setVerticalAlignment(DocumentApp.VerticalAlignment.CENTER);

// Align the third cell's contents to the bottom.
table.getCell(0, 2).setVerticalAlignment(DocumentApp.VerticalAlignment.BOTTOM);

속성

속성유형설명
BOTTOMEnum하단 정렬 옵션
CENTEREnum가운데 정렬 옵션
TOPEnum상단 정렬 옵션