跳到主要内容

GetFill

从当前形状获取填充属性。

语法

expression.GetFill();

expression - 表示 ApiShape 类的变量。

参数

此方法没有任何参数。

返回值

ApiFill | null

示例

读取应用于形状的填充并在电子表格的单元格中报告其类型。

// How do I check what fill a shape is using in a spreadsheet?

// Retrieve the color or gradient covering a shape and display the fill type on the sheet in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let gs1 = Api.CreateGradientStop(Api.CreateRGBColor(255, 213, 191), 0);
let gs2 = Api.CreateGradientStop(Api.CreateRGBColor(255, 111, 61), 100000);
let fill = Api.CreateLinearGradientFill([gs1, gs2], 5400000);
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
let shape = worksheet.AddShape("rect", 60 * 36000, 40 * 36000, fill, stroke, 3, 0, 2, 2);
let retrievedFill = shape.GetFill();
if (retrievedFill) {
worksheet.GetRange("A1").SetValue("Fill type: " + retrievedFill.GetType());
}