Class Link

Bağlantı

Bir köprü metni.

Yöntemler

YöntemDönüş türüKısa açıklama
getLinkType()LinkTypeLinkType değerini döndürür.
getLinkedSlide()SlideURL olmayan bağlantı türleri için bağlı Slide'yi (varsa) döndürür.
getSlideId()StringLinkType LinkType.SLIDE_ID değilse bağlı Slide veya null öğesinin kimliğini döndürür.
getSlideIndex()IntegerLinkType LinkType.SLIDE_INDEX değilse bağlı Slide veya null öğesinin sıfır tabanlı dizesini döndürür.
getSlidePosition()SlidePositionLinkType LinkType.SLIDE_POSITION değilse bağlı Slide öğesinin SlidePosition değerini veya null değerini döndürür.
getUrl()StringHarici web sayfasının URL'sini veya LinkType LinkType.URL değilse null değerini döndürür.

Ayrıntılı dokümanlar

getLinkType()

LinkType değerini döndürür.

const shape = SlidesApp.getActivePresentation().getSlides()[0].getShapes()[0];
const link = shape.getLink();
if (link != null) {
  Logger.log(`Shape has a link of type: ${link.getLinkType()}`);
}

Return

LinkType

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

getLinkedSlide()

URL olmayan bağlantı türleri için bağlı Slide'yi (varsa) döndürür. Slayt sunu içinde yoksa veya LinkType LinkType.URL ise null döndürülür.

const shape = SlidesApp.getActivePresentation().getSlides()[0].getShapes()[0];
const link = shape.getLink();
if (link != null && link.getLinkType() !== SlidesApp.LinkType.URL) {
  Logger.log(`Shape has link to slide: ${link.getLinkedSlide()}`);
}

Return

Slide

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

getSlideId()

LinkType LinkType.SLIDE_ID değilse bağlı Slide veya null öğesinin kimliğini döndürür.

Döndürülen kimliğe sahip slaytın mevcut olmayabileceğini unutmayın.

const shape = SlidesApp.getActivePresentation().getSlides()[0].getShapes()[0];
const link = shape.getLink();
if (link != null && link.getLinkType() === SlidesApp.LinkType.SLIDE_ID) {
  Logger.log(`Shape has link to slide with ID: ${link.getSlideId()}`);
}

Return

String

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

getSlideIndex()

LinkType LinkType.SLIDE_INDEX değilse bağlı Slide veya null öğesinin sıfır tabanlı dizesini döndürür.

Döndürülen dizindeki slaytın mevcut olmayabileceğini unutmayın.

const shape = SlidesApp.getActivePresentation().getSlides()[0].getShapes()[0];
const link = shape.getLink();
if (link != null && link.getLinkType() === SlidesApp.LinkType.SLIDE_INDEX) {
  Logger.log(`Shape has link to slide with index: ${link.getSlideIndex()}`);
}

Return

Integer

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

getSlidePosition()

LinkType LinkType.SLIDE_POSITION değilse bağlı Slide öğesinin SlidePosition değerini veya null değerini döndürür.

Döndürülen göreli konumun bulunduğu slaytın mevcut olmayabileceğini unutmayın.

const shape = SlidesApp.getActivePresentation().getSlides()[0].getShapes()[0];
const link = shape.getLink();
if (link != null && link.getLinkType() === SlidesApp.LinkType.SLIDE_POSITION) {
  Logger.log(
      `Shape has link to slide with relative position: ${
          link.getSlidePosition()}`,
  );
}

Return

SlidePosition

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

getUrl()

Harici web sayfasının URL'sini veya LinkType LinkType.URL değilse null değerini döndürür.

const shape = SlidesApp.getActivePresentation().getSlides()[0].getShapes()[0];
const link = shape.getLink();
if (link != null && link.getLinkType() === SlidesApp.LinkType.URL) {
  Logger.log(`Shape has link to URL: ${link.getUrl()}`);
}

Return

String

Yetkilendirme

Bu yöntemi kullanan komut dosyalarının aşağıdaki kapsamlardan bir veya daha fazlası için yetkilendirilmesi gerekir:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations