Оптимизируйте свои подборки
Сохраняйте и классифицируйте контент в соответствии со своими настройками.
Тип глифа
Перечисление поддерживаемых типов глифов.
Чтобы вызвать перечисление, вы вызываете его родительский класс, имя и свойство. Например, DocumentApp.GlyphType.BULLET .
Используйте перечисление GlyphType , чтобы установить тип маркера для элементов списка.
var body = 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);
[[["Прост для понимания","easyToUnderstand","thumb-up"],["Помог мне решить мою проблему","solvedMyProblem","thumb-up"],["Другое","otherUp","thumb-up"]],[["Отсутствует нужная мне информация","missingTheInformationINeed","thumb-down"],["Слишком сложен/слишком много шагов","tooComplicatedTooManySteps","thumb-down"],["Устарел","outOfDate","thumb-down"],["Проблема с переводом текста","translationIssue","thumb-down"],["Проблемы образцов/кода","samplesCodeIssue","thumb-down"],["Другое","otherDown","thumb-down"]],["Последнее обновление: 2024-10-25 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."]]],[]]