End
Returns a Range object that represents the end in the specified direction in the specified range.
Syntax
expression.End(direction);
expression
- A variable that represents a ApiRange class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
direction | Required | Direction | The direction of end in the specified range. * |
Returns
Example
This example shows how to get a Range object that represents the end in the specified direction in the specified range.
- Code
- Result
// Get a left end part of a range and fill it with color.
// Get a specified direction end of a range.
let worksheet = Api.GetActiveSheet();
let range = worksheet.GetRange("C4:D5");
range.End("xlToLeft").SetFillColor(Api.CreateColorFromRGB(255, 213, 191));