CreateNoFill
Creates no fill and removes the fill from the element.
Syntax
expression.CreateNoFill();
expression - A variable that represents a Api class.
Parameters
This method doesn't have any parameters.
Returns
Example
Remove the background fill from a shape so its interior becomes transparent in a spreadsheet.
// How do I make a shape's background fully transparent by removing its fill in a spreadsheet?
// Clear any color or pattern from a shape's background to leave it see-through in a spreadsheet.
let worksheet = Api.GetActiveSheet();
let gs1 = Api.CreateGradientStop(Api.RGB(255, 213, 191), 0);
let gs2 = Api.CreateGradientStop(Api.RGB(255, 111, 61), 100000);
let fill = Api.CreateLinearGradientFill([gs1, gs2], 5400000);
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
worksheet.AddShape("flowChartOnlineStorage", 60 * 36000, 35 * 36000, fill, stroke, 0, 2 * 36000, 1, 3 * 36000);