하이퍼텍스트 링크입니다.
메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
getLinkType() | LinkType | LinkType 를 반환합니다. |
getLinkedSlide() | Slide | URL이 아닌 링크 유형에 연결된 Slide 가 있는 경우 이를 반환합니다. |
getSlideId() | String | 연결된 Slide 의 ID를 반환하거나 null 이 LinkType
LinkType.SLIDE_ID 입니다. |
getSlideIndex() | Integer | 연결된 Slide 의 0 기반 색인 또는 LinkType 이 LinkType.SLIDE_INDEX 이 아니면 null 을 반환합니다. |
getSlidePosition() | SlidePosition | 연결된 Slide 의 SlidePosition 또는 LinkType 가 LinkType.SLIDE_POSITION 가 아니면 null 를 반환합니다. |
getUrl() | String | 외부 웹페이지 URL을 반환하거나 LinkType 가 LinkType.URL 이 아니면 null 을 반환합니다. |
자세한 문서
getLinkType()
getLinkedSlide()
URL이 아닌 링크 유형에 연결된 Slide
가 있는 경우 이를 반환합니다. 다음과 같은 경우 null
를 반환합니다.
슬라이드가 프레젠테이션에 없는 경우 또는 LinkType
가 LinkType.URL
인 경우입니다.
var link = shape.getLink(); if (link != null && link.getLinkType() != SlidesApp.LinkType.URL) { Logger.log('Shape has link to slide: ' + link.getLinkedSlide()); }
리턴
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
getSlideId()
연결된 Slide
의 ID를 반환하거나 null
이 LinkType
LinkType.SLIDE_ID
입니다.
반환된 ID가 있는 슬라이드가 존재하지 않을 수 있습니다.
var link = shape.getLink(); if (link != null && link.getLinkType() == SlidesApp.LinkType.SLIDE_ID) { Logger.log('Shape has link to slide with ID: ' + link.getSlideId()); }
리턴
String
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
getSlideIndex()
연결된 Slide
의 0 기반 색인 또는 LinkType
이 LinkType.SLIDE_INDEX
이 아니면 null
을 반환합니다.
반환된 색인에 있는 슬라이드가 존재하지 않을 수도 있습니다.
var link = shape.getLink(); if (link != null && link.getLinkType() == SlidesApp.LinkType.SLIDE_INDEX) { Logger.log('Shape has link to slide with index: ' + link.getSlideIndex()); }
리턴
Integer
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
getSlidePosition()
연결된 Slide
의 SlidePosition
또는 LinkType
가 LinkType.SLIDE_POSITION
가 아니면 null
를 반환합니다.
반환된 상대 위치가 있는 슬라이드는 존재하지 않을 수 있습니다.
var link = shape.getLink(); if (link != null && link.getLinkType() == SlidesApp.LinkType.SLIDE_POSITION) { Logger.log('Shape has link to slide with relative position: ' + link.getSlidePosition()); }
리턴
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations
getUrl()
외부 웹페이지 URL을 반환하거나 LinkType
가 LinkType.URL
이 아니면 null
을 반환합니다.
var link = shape.getLink(); if (link != null && link.getLinkType() == SlidesApp.LinkType.URL) { Logger.log('Shape has link to URL: ' + link.getUrl()); }
리턴
String
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.
-
https://www.googleapis.com/auth/presentations.currentonly
-
https://www.googleapis.com/auth/presentations