Enum Alignment
정렬
지원되는 이미지 정렬 유형을 나타내는 enum입니다. 다음에서 정렬 유형에 액세스할 수 있습니다.
FormApp.Alignment
enum을 호출하려면 상위 클래스, 이름, 속성을 호출합니다. 예를 들면
FormApp.Alignment.LEFT
입니다.
// Open a form by ID and add a new image item with alignment
var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');
var img = UrlFetchApp.fetch('https://www.google.com/images/srpr/logo4w.png');
form.addImageItem()
.setImage(img)
.setAlignment(FormApp.Alignment.CENTER);
속성
속성 | 유형 | 설명 |
LEFT | Enum | 이미지를 양식의 왼쪽에 맞춥니다. |
CENTER | Enum | 이미지를 양식의 중앙에 맞춥니다. |
RIGHT | Enum | 이미지를 양식의 오른쪽에 맞춥니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-09-13(UTC)
[null,null,["최종 업데이트: 2024-09-13(UTC)"],[[["`FormApp.Alignment` is an enum used to define the alignment of images within a Google Form."],["Image alignment options include `LEFT`, `CENTER`, and `RIGHT`, which can be accessed using `FormApp.Alignment.LEFT`, `FormApp.Alignment.CENTER`, and `FormApp.Alignment.RIGHT` respectively."],["You can set the alignment of an image item in your form using the `setAlignment()` method and passing in the desired `FormApp.Alignment` property."]]],[]]