삽입된 이미지를 나타내는 요소입니다. InlineImage
는
ListItem
또는 Paragraph
(ListItem
또는 Paragraph
이
FootnoteSection
InlineImage
는 그 자체로 다른 요소를 포함할 수 없습니다. 대상
문서 구조에 대한 자세한 내용은 Google Docs 확장 가이드를 참조하세요.
메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
copy() | InlineImage | 현재 요소의 분리된 전체 사본을 반환합니다. |
getAltDescription() | String | 이미지의 대체 설명을 반환합니다. |
getAltTitle() | String | 이미지의 대체 제목을 반환합니다. |
getAs(contentType) | Blob | 이 객체 내의 데이터를 지정된 콘텐츠 유형으로 변환된 blob으로 반환합니다. |
getAttributes() | Object | 요소의 속성을 검색합니다. |
getBlob() | Blob | 이 객체 내의 데이터를 blob으로 반환합니다. |
getHeight() | Integer | 이미지의 높이를 픽셀 단위로 가져옵니다. |
getLinkUrl() | String | 링크 URL을 검색합니다. |
getNextSibling() | Element | 요소의 다음 동위 요소를 검색합니다. |
getParent() | ContainerElement | 요소의 상위 요소를 검색합니다. |
getPreviousSibling() | Element | 요소의 이전 동위 요소를 검색합니다. |
getType() | ElementType | 요소의 ElementType 를 검색합니다. |
getWidth() | Integer | 이미지의 너비를 픽셀 단위로 검색합니다. |
isAtDocumentEnd() | Boolean | 요소가 Document 끝에 있는지 확인합니다. |
merge() | InlineImage | 요소를 동일한 유형의 앞의 동위 요소와 병합합니다. |
removeFromParent() | InlineImage | 상위 항목에서 요소를 삭제합니다. |
setAltDescription(description) | InlineImage | 이미지의 대체 설명을 설정합니다. |
setAltTitle(title) | InlineImage | 이미지의 대체 제목을 설정합니다. |
setAttributes(attributes) | InlineImage | 요소의 속성을 설정합니다. |
setHeight(height) | InlineImage | 이미지의 높이를 픽셀 단위로 설정합니다. |
setLinkUrl(url) | InlineImage | 링크 URL을 설정합니다. |
setWidth(width) | InlineImage | 이미지의 너비를 픽셀 단위로 설정합니다. |
자세한 문서
copy()
현재 요소의 분리된 전체 사본을 반환합니다.
요소에 있는 모든 하위 요소도 복사됩니다. 새 요소에는 있습니다.
리턴
InlineImage
- 새 사본입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getAltDescription()
이미지의 대체 설명을 반환합니다.
리턴
String
: 대체 제목 또는 요소에 대체 제목이 없는 경우 null
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getAltTitle()
이미지의 대체 제목을 반환합니다.
리턴
String
: 대체 제목 또는 요소에 대체 제목이 없는 경우 null
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getAs(contentType)
이 객체 내의 데이터를 지정된 콘텐츠 유형으로 변환된 blob으로 반환합니다. 이 메서드는 파일 이름에 적절한 확장자를 추가합니다(예: 'myfile.pdf'). 하지만 파일 이름에서 마지막 마침표 뒤에 오는 부분 (있는 경우)이 기존 교체해야 합니다. 따라서 'ShoppingList.12.25.2014' 위 이름이 아래와 같이 변경됩니다. 'ShoppingList.12.25.pdf'
전환수의 일일 할당량을 보려면 Google '서비스'로 이동합니다. 새로 생성된 Google Workspace 도메인에는 일시적으로 더 엄격한 정책이 적용될 수 있습니다. 할당량도 제공합니다
매개변수
이름 | 유형 | 설명 |
---|---|---|
contentType | String | 변환할 MIME 유형입니다. 대부분의 blob에서 'application/pdf' 는 다음과 같습니다.
유일하게 유효한 옵션입니다. BMP, GIF, JPEG, PNG 형식의 이미지인 경우 'image/bmp' , 'image/gif' , 'image/jpeg' , 'image/png' 중 어느 것이든 해당됩니다.
유효한지 확인합니다. Google Docs 문서의 경우 'text/markdown' 도 유효합니다. |
리턴
Blob
- blob 형식의 데이터입니다.
getAttributes()
요소의 속성을 검색합니다.
결과는 유효한 각 요소 속성에 대한 속성을 포함하는 객체이며, 여기서 각 요소는
속성 이름은 DocumentApp.Attribute
열거형의 항목에 해당합니다.
var doc = DocumentApp.getActiveDocument(); var documentTab = doc.getActiveTab().asDocumentTab(); var body = documentTab.getBody(); // Append a styled paragraph. var par = body.appendParagraph('A bold, italicized paragraph.'); par.setBold(true); par.setItalic(true); // Retrieve the paragraph's attributes. var atts = par.getAttributes(); // Log the paragraph attributes. for (var att in atts) { Logger.log(att + ":" + atts[att]); }
리턴
Object
- 요소의 속성입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getBlob()
이 객체 내의 데이터를 blob으로 반환합니다.
리턴
Blob
- blob 형식의 데이터입니다.
getHeight()
이미지의 높이를 픽셀 단위로 가져옵니다.
리턴
Integer
: 이미지의 높이(픽셀)
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getLinkUrl()
링크 URL을 검색합니다.
리턴
String
: 링크 URL 또는 요소에 이 항목의 여러 값이 포함된 경우 null
속성의 값을 제공합니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getNextSibling()
getParent()
요소의 상위 요소를 검색합니다.
상위 요소에 현재 요소가 포함되어 있습니다.
리턴
ContainerElement
- 상위 요소입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getPreviousSibling()
getType()
요소의 ElementType
를 검색합니다.
getType()
를 사용하여 지정된 요소의 정확한 유형을 확인합니다.
var doc = DocumentApp.getActiveDocument(); var documentTab = doc.getActiveTab().asDocumentTab(); var body = documentTab.getBody(); // Obtain the first element in the active tab's body. var firstChild = body.getChild(0); // Use getType() to determine the element's type. if (firstChild.getType() == DocumentApp.ElementType.PARAGRAPH) { Logger.log('The first element is a paragraph.'); } else { Logger.log('The first element is not a paragraph.'); }
리턴
ElementType
- 요소 유형입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getWidth()
이미지의 너비를 픽셀 단위로 검색합니다.
리턴
Integer
: 이미지의 너비(픽셀)
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
isAtDocumentEnd()
merge()
요소를 동일한 유형의 앞의 동위 요소와 병합합니다.
동일한 ElementType
의 요소만 병합할 수 있습니다.
현재 요소가 이전 동위 요소로 이동합니다.
현재 요소가 문서에서 삭제됩니다.
var doc = DocumentApp.getActiveDocument(); var documentTab = doc.getActiveTab().asDocumentTab(); var body = documentTab.getBody(); // Example 1: Merge paragraphs // Append two paragraphs to the document's active tab. var par1 = body.appendParagraph('Paragraph 1.'); var par2 = body.appendParagraph('Paragraph 2.'); // Merge the newly added paragraphs into a single paragraph. par2.merge(); // Example 2: Merge table cells // Create a two-dimensional array containing the table's cell contents. var cells = [ ['Row 1, Cell 1', 'Row 1, Cell 2'], ['Row 2, Cell 1', 'Row 2, Cell 2'] ]; // Build a table from the array. var table = body.appendTable(cells); // Get the first row in the table. var row = table.getRow(0); // Get the two cells in this row. var cell1 = row.getCell(0); var cell2 = row.getCell(1); // Merge the current cell into its preceding sibling element. var merged = cell2.merge();
리턴
InlineImage
- 병합된 요소입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
removeFromParent()
상위 항목에서 요소를 삭제합니다.
var doc = DocumentApp.getActiveDocument(); var documentTab = doc.getActiveTab().asDocumentTab() var body = documentTab.getBody(); // Remove all images in the active tab's body. var imgs = body.getImages(); for (var i = 0; i < imgs.length; i++) { imgs[i].removeFromParent(); }
리턴
InlineImage
- 삭제된 요소입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setAltDescription(description)
이미지의 대체 설명을 설정합니다. 지정된 제목이 null
이면
설명을 빈 문자열에 추가합니다.
매개변수
이름 | 유형 | 설명 |
---|---|---|
description | String | 대체 제목 |
리턴
InlineImage
- 현재 객체
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setAltTitle(title)
이미지의 대체 제목을 설정합니다. 지정된 제목이 null
이면 제목을
빈 문자열입니다.
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 대체 제목 |
리턴
InlineImage
- 현재 객체
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setAttributes(attributes)
요소의 속성을 설정합니다.
지정된 속성 매개변수는 각 속성 이름이 항목인 객체여야 합니다.
DocumentApp.Attribute
열거형이며 각 속성 값은 새 값입니다.
적용됩니다.
var doc = DocumentApp.getActiveDocument(); var documentTab = doc.getActiveTab().asDocumentTab(); var body = documentTab.getBody(); // Define a custom paragraph style. var style = {}; style[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] = DocumentApp.HorizontalAlignment.RIGHT; style[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri'; style[DocumentApp.Attribute.FONT_SIZE] = 18; style[DocumentApp.Attribute.BOLD] = true; // Append a plain paragraph. var par = body.appendParagraph('A paragraph with custom style.'); // Apply the custom style. par.setAttributes(style);
매개변수
이름 | 유형 | 설명 |
---|---|---|
attributes | Object | 요소의 속성입니다. |
리턴
InlineImage
- 현재 요소입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setHeight(height)
이미지의 높이를 픽셀 단위로 설정합니다.
매개변수
이름 | 유형 | 설명 |
---|---|---|
height | Integer | 이미지 높이(픽셀) |
리턴
InlineImage
- 현재 객체
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setLinkUrl(url)
링크 URL을 설정합니다. 지정된 URL이 null
이거나 빈 문자열인 경우 이 메서드는
'잘못된 링크'로 표시될 수 있는 빈 URL의 링크 있습니다.
매개변수
이름 | 유형 | 설명 |
---|---|---|
url | String | 링크 URL입니다. |
리턴
InlineImage
- 현재 객체
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setWidth(width)
이미지의 너비를 픽셀 단위로 설정합니다.
매개변수
이름 | 유형 | 설명 |
---|---|---|
width | Integer | 이미지 너비(픽셀) |
리턴
InlineImage
- 현재 객체
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents