문서 서비스에서 수정할 수 있는 Documents
을(를) 만들고 엽니다.
// Open a document by ID. // TODO(developer): Replace the ID with your own. var doc = DocumentApp.openById('DOCUMENT_ID'); // Create and open a document. doc = DocumentApp.create('Document Name');
속성
속성 | 유형 | 설명 |
---|---|---|
Attribute | Attribute | Attribute 열거형. |
ElementType | ElementType | ElementType 열거형. |
FontFamily |
| 열거형. |
GlyphType | GlyphType | GlyphType 열거형. |
HorizontalAlignment | HorizontalAlignment | HorizontalAlignment 열거형. |
ParagraphHeading | ParagraphHeading | ParagraphHeading 열거형. |
PositionedLayout | PositionedLayout | PositionedLayout 열거형. |
TextAlignment | TextAlignment | TextAlignment 열거형. |
VerticalAlignment | VerticalAlignment | VerticalAlignment 열거형. |
메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
create(name) | Document | 새 문서를 만들고 반환합니다. |
getActiveDocument() | Document | 스크립트가 컨테이너에 결합된 문서를 반환합니다. |
getUi() | Ui | 스크립트가 메뉴, 대화상자, 사이드바 등의 기능을 사용할 수 있습니다 |
openById(id) | Document | 지정된 ID가 있는 문서를 반환합니다. |
openByUrl(url) | Document | 문서를 열고 지정된 URL로 반환합니다. |
자세한 문서
create(name)
getActiveDocument()
스크립트가 컨테이너에 결합된 문서를 반환합니다. 대상 문서와 상호작용하기 위해
스크립트가 컨테이너에 결합되지 않은 경우 openById(id)
또는 openByUrl(url)
를 사용합니다.
하세요.
// Get the document to which this script is bound. var doc = DocumentApp.getActiveDocument();
리턴
Document
: 문서 인스턴스
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getUi()
스크립트가 메뉴, 대화상자, 사이드바 등의 기능을 사용할 수 있습니다 스크립트는 스크립트가 문서에 바인딩된 경우에만 열려 있는 문서의 현재 인스턴스입니다. 자세한 내용은 메뉴 및 대화상자 및 사이드바 가이드를 참조하세요.
// Add a custom menu to the active document, including a separator and a sub-menu. function onOpen(e) { DocumentApp.getUi() .createMenu('My Menu') .addItem('My menu item', 'myFunction') .addSeparator() .addSubMenu(DocumentApp.getUi().createMenu('My sub-menu') .addItem('One sub-menu item', 'mySecondFunction') .addItem('Another sub-menu item', 'myThirdFunction')) .addToUi(); }
리턴
Ui
: 이 문서의 사용자 인터페이스 환경 인스턴스
openById(id)
지정된 ID가 있는 문서를 반환합니다. 스크립트가 컨테이너에 컨테이너로 바인드된 경우
대신 getActiveDocument()
를 사용하세요.
// Open a document by ID. // TODO(developer): Replace the ID with your own. var doc = DocumentApp.openById('DOCUMENT_ID');
매개변수
이름 | 유형 | 설명 |
---|---|---|
id | String | 열려는 문서의 ID입니다. |
리턴
Document
- 문서 인스턴스입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents
openByUrl(url)
문서를 열고 지정된 URL로 반환합니다. 스크립트가
getActiveDocument()
를 사용하세요.
// Open a document by URL. var doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/1234567890abcdefghijklmnopqrstuvwxyz_a1b2c3/edit');
매개변수
이름 | 유형 | 설명 |
---|---|---|
url | String | 열려는 문서의 URL |
리턴
Document
: 문서 인스턴스
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents