PowerPoint.Interfaces.ShapeFillData interface
一个接口,用于描述通过调用 shapeFill.toJSON()
返回的数据。
属性
foreground |
以 HTML 颜色格式表示形状填充前景色,形式#RRGGBB (例如“FFA500”) 或命名的 HTML 颜色 (例如“orange”) 。 |
transparency | 将填充的透明度百分比指定为从 0.0 (不透明) 到 1.0 (清除) 的值。 |
type | 返回形状的填充类型。 有关详细信息,请参阅 PowerPoint.ShapeFillType 。 |
属性详细信息
foregroundColor
以 HTML 颜色格式表示形状填充前景色,形式#RRGGBB (例如“FFA500”) 或命名的 HTML 颜色 (例如“orange”) 。
foregroundColor?: string;
属性值
string
注解
transparency
将填充的透明度百分比指定为从 0.0 (不透明) 到 1.0 (清除) 的值。 null
如果形状类型不支持透明度或形状填充的透明度不一致(例如渐变填充类型),则返回 。
transparency?: number;
属性值
number
注解
type
返回形状的填充类型。 有关详细信息,请参阅 PowerPoint.ShapeFillType 。
type?: PowerPoint.ShapeFillType | "NoFill" | "Solid" | "Gradient" | "Pattern" | "PictureAndTexture" | "SlideBackground";
属性值
PowerPoint.ShapeFillType | "NoFill" | "Solid" | "Gradient" | "Pattern" | "PictureAndTexture" | "SlideBackground"