Enum FillType
塗りつぶしタイプ塗りつぶしの種類。
列挙型を呼び出すには、その親クラス、名前、プロパティを呼び出します。たとえば、
SlidesApp.FillType.SOLID
です。
プロパティ
プロパティ | タイプ | 説明 |
UNSUPPORTED | Enum | サポートされていない塗りつぶしタイプ。 |
NONE | Enum | 塗りつぶしがないため、背景は透明です。 |
SOLID | Enum | 単色の塗りつぶし。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-12-02 UTC。
[null,null,["最終更新日 2024-12-02 UTC。"],[[["`FillType` in Google Slides API refers to the different ways an object can be filled, such as with a solid color or no fill at all."],["You can access specific fill types using the syntax `SlidesApp.FillType.[property]`, for example, `SlidesApp.FillType.SOLID` represents a solid fill."],["There are three main fill types: `UNSUPPORTED`, `NONE` (transparent background), and `SOLID`."]]],["The `FillType` enum defines the types of fills available, accessible via `SlidesApp.FillType.PROPERTY_NAME`. It includes three properties: `UNSUPPORTED` for unsupported fills, `NONE` for transparent backgrounds, and `SOLID` for solid color fills. Each property is of the `Enum` type. Calling an Enum requires calling it's parent class.\n"]]