Kullanıcının etkin sunudaki seçimi.
const selection = SlidesApp.getActivePresentation().getSelection(); const currentPage = selection.getCurrentPage(); const selectionType = selection.getSelectionType();
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
get | Page | Etkin sayfa yoksa şu anda etkin olan Page veya null değerini döndürür. |
get | Page | Seçilen Page örneklerini içeren Page koleksiyonunu veya seçili Page örneği yoksa null değerini döndürür. |
get | Page | Film şeridinde seçili olan Page örneklerini içeren bir koleksiyon olan Page veya seçim Selection türü değilse null değerini döndürür. |
get | Selection | Selection değerini döndürür. |
get | Table | Seçilen Table örnekleri Table koleksiyonunu veya seçili Table örneği yoksa null değerini döndürür. |
get | Text | Seçili Text değerini veya seçim Selection türünde değilse null değerini döndürür. |
Ayrıntılı dokümanlar
get Current Page()
Etkin sayfa yoksa şu anda etkin olan Page
veya null
değerini döndürür.
const selection = SlidesApp.getActivePresentation().getSelection(); const currentPage = selection.getCurrentPage(); if (currentPage != null) { Logger.log(`Selected current active page ID: ${currentPage.getObjectId()}`); }
Return
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
get Page Element Range()
Seçilen Page
örneklerini içeren Page
koleksiyonunu veya seçili Page
örneği yoksa null
değerini döndürür.
const selection = SlidesApp.getActivePresentation().getSelection(); const selectionType = selection.getSelectionType(); if (selectionType === SlidesApp.SelectionType.PAGE_ELEMENT) { const currentPage = selection.getCurrentPage(); const pageElements = selection.getPageElementRange().getPageElements(); Logger.log(`Number of page elements selected: ${pageElements.length}`); }
Return
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
get Page Range()
Film şeridinde seçili olan Page
örneklerini içeren bir koleksiyon olan Page
veya seçim Selection
türü değilse null
değerini döndürür.
const selection = SlidesApp.getActivePresentation().getSelection(); const selectionType = selection.getSelectionType(); if (selectionType === SlidesApp.SelectionType.PAGE) { const pageRange = selection.getPageRange(); Logger.log( `Number of pages in the flimstrip selected: ${ pageRange.getPages().length}`, ); }
Return
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
get Selection Type()
Selection
değerini döndürür.
const selection = SlidesApp.getActivePresentation().getSelection(); const selectionType = selection.getSelectionType(); if (selectionType === SlidesApp.SelectionType.CURRENT_PAGE) { const currentPage = selection.getCurrentPage(); Logger.log(`Selected current active page ID: ${currentPage.getObjectId()}`); }
Return
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
get Table Cell Range()
Seçilen Table
örnekleri Table
koleksiyonunu veya seçili Table
örneği yoksa null
değerini döndürür.
const selection = SlidesApp.getActivePresentation().getSelection(); const selectionType = selection.getSelectionType(); if (selectionType === SlidesApp.SelectionType.TABLE_CELL) { const currentPage = selection.getCurrentPage(); const tableCells = selection.getTableCellRange().getTableCells(); const table = tableCells[0].getParentTable(); Logger.log(`Number of table cells selected: ${tableCells.length}`); }
Return
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
get Text Range()
Seçili Text
değerini veya seçim Selection
türünde değilse null
değerini döndürür.
Text
iki senaryoyu temsil eder:
1. Seçilen metin aralığı. Örneğin, bir şekilde "Merhaba" metni varsa ve "O" seçilirse döndürülen aralık Text
= 0 ve Text
= 2 değerini alır.
2. İmleç konumu. Örneğin, bir şekilde "Merhaba" metni varsa ve imleç "H"den sonraysa ("H|ello"), döndürülen aralık Text
= 1 ve Text
= 1 değerini içerir.
const selection = SlidesApp.getActivePresentation().getSelection(); const selectionType = selection.getSelectionType(); if (selectionType === SlidesApp.SelectionType.TEXT) { const currentPage = selection.getCurrentPage(); const pageElement = selection.getPageElementRange().getPageElements()[0]; const textRange = selection.getTextRange(); Logger.log(`Text selected: ${textRange.asString()}`); }
Return
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