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.
var oWorksheet = Api.GetActiveSheet();
var oRange = oWorksheet.GetRange("C4:D5");
oRange.End("xlToLeft").SetFillColor(Api.CreateColorFromRGB(255, 213, 191));