GetCols
Returns a ApiRange that represents all the cells on the columns range.
Parameters:
Name |
Type |
Description |
sRange |
string
|
|
Returns:
- Type
-
ApiRange
Example
Copy code
builder.CreateFile("xlsx");
oWorksheet = Api.GetActiveSheet();
oCols = oWorksheet.GetCols("A1:C1");
oCols.SetFillColor(Api.CreateColorFromRGB(255, 224, 204));
builder.SaveFile("xlsx", "GetCols.xlsx");
builder.CloseFile();
Resulting document