CreateBlipFill
Creates a blip fill to apply to the object using the selected image as the object background.
Parameters:
Name |
Type |
Description |
sImageUrl |
string
|
The path to the image used for the blip fill (currently only internet URL or Base64 encoded images are supported). |
sBlipFillType |
BlipFillType
|
The type of the fill used for the blip fill (tile or stretch). |
Returns:
- Type
-
ApiFill
Example
Copy code
builder.CreateFile("xlsx");
var oWorksheet = Api.GetActiveSheet();
var oFill = Api.CreateBlipFill("https://api.onlyoffice.com/content/img/docbuilder/examples/icon_DocumentEditors.png", "tile");
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
oWorksheet.AddShape("flowChartOnlineStorage", 60 * 36000, 35 * 36000, oFill, oStroke, 0, 2 * 36000, 1, 3 * 36000);
builder.SaveFile("xlsx", "CreateBlipFill.xlsx");
builder.CloseFile();
Resulting document