Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
KarakterTürü
Desteklenen karakter türlerinin listesi.
Bir enum'u çağırmak için üst sınıfını, adını ve özelliğini çağırırsınız. Örneğin,
DocumentApp.GlyphType.BULLET.
Liste öğeleri için madde işareti türünü ayarlamak üzere GlyphType numaralandırmasını kullanın.
constbody=DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();// Insert at list item, with the default nesting level of zero.body.appendListItem('Item 1');// Append a second list item, with a nesting level of one, indented one inch.// The two items have different bullet glyphs.body.appendListItem('Item 2').setNestingLevel(1).setIndentStart(72).setGlyphType(DocumentApp.GlyphType.SQUARE_BULLET);
Özellikler
Mülk
Tür
Açıklama
BULLET
Enum
Dairesel ve dolu olan varsayılan madde işareti.
HOLLOW_BULLET
Enum
Boş bir mermi.
SQUARE_BULLET
Enum
Kare madde işareti.
NUMBER
Enum
Sayı tabanlı madde işareti.
LATIN_UPPER
Enum
Latin büyük harfli bir madde işareti.
LATIN_LOWER
Enum
Latin alfabesinin küçük harfleriyle yazılmış bir madde işareti.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2024-12-22 UTC."],[[["`GlyphType` is an enumeration used to specify the type of bullet or symbol used in list items within Google Docs."],["You can use the `GlyphType` enumeration with the `setGlyphType()` method to change the bullet style of list items."],["Several predefined glyph types are available, including `BULLET`, `HOLLOW_BULLET`, `SQUARE_BULLET`, `NUMBER`, `LATIN_UPPER`, `LATIN_LOWER`, `ROMAN_UPPER`, and `ROMAN_LOWER`."],["To call a specific glyph type, use the syntax `DocumentApp.GlyphType.[GlyphTypeName]`, for example, `DocumentApp.GlyphType.BULLET` for a standard bullet."]]],[]]