קל לארגן דפים בעזרת אוספים אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
DashStyle
סוגי המקפים שבהם אפשר לעבד גיאומטריה ליניארית. הערכים האלה מבוססים על הסוג הפשוט ST_PresetLineDashVal שמתואר בקטע 20.1.10.48 של Office Open XML File Formats - Fundamentals and Markup Language Reference, חלק 1 של ECMA-376 מהדורה 5.
כדי לקרוא ל-enum, קוראים למחלקת האב, לשם ולמאפיין שלו. לדוגמה, SlidesApp.DashStyle.DOT.
מאפיינים
נכס
סוג
תיאור
UNSUPPORTED
Enum
סגנון מקף שלא נתמך.
SOLID
Enum
קו רצוף. תואם לערך 'solid' של ECMA-376 ST_PresetLineDashVal. זהו סגנון המקף שמוגדר כברירת מחדל.
DOT
Enum
קו מקווקו. תואם לערך 'dot' של ECMA-376 ST_PresetLineDashVal.
DASH
Enum
קו מקווקו. תואם לערך 'dash' של ECMA-376 ST_PresetLineDashVal.
DASH_DOT
Enum
מקפים ונקודות מתחלפים. תואם לערך 'dashDot' של ECMA-376 ST_PresetLineDashVal.
LONG_DASH
Enum
קו עם מקפים גדולים. תואם לערך 'lgDash' של ECMA-376 ST_PresetLineDashVal.
LONG_DASH_DOT
Enum
מקפים גדולים ונקודות מתחלפים. תואם לערך ECMA-376 ST_PresetLineDashVal 'lgDashDot'.
[[["התוכן קל להבנה","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"]],["עדכון אחרון: 2025-08-04 (שעון UTC)."],[[["`DashStyle` defines the different types of dashes used for rendering lines in presentations, based on the ECMA-376 standard."],["You can access these dash styles using the format `SlidesApp.DashStyle.PROPERTY`, replacing `PROPERTY` with the desired style like `DOT` or `DASH`."],["Available dash styles include solid, dotted, dashed, dash-dot, long dash, and long dash-dot, along with a default `SOLID` and an `UNSUPPORTED` style."],["Each dash style corresponds to a specific ECMA-376 `ST_PresetLineDashVal` value for interoperability with other applications."]]],["`DashStyle` defines the types of dashes for rendering linear geometry, based on the ECMA-376 standard. It provides properties to represent different line styles, including `UNSUPPORTED`, `SOLID` (default), `DOT`, `DASH`, `DASH_DOT`, `LONG_DASH`, and `LONG_DASH_DOT`. Each property corresponds to a specific `ST_PresetLineDashVal` value. To use an enum, refer to its parent class, name, and property (e.g., `SlidesApp.DashStyle.DOT`).\n"]]