Range
This object is used in various places to indicate a region within the editor. To better visualize how this works, imagine a rectangle. Each quadrant of the rectangle is analogous to a range, as ranges contain a starting row and starting column, and an ending row, and ending column.
Constructors
Creates a new Range
object with the given starting and ending row and column points.
startRow | Number | Required. The starting row |
startColumn | Number | Required. The starting column |
endRow | Number | Required. The ending row |
endColumn | Number | Required. The ending column |
Methods
Returns the part of the current Range
that occurs within the boundaries of firstRow
and lastRow
as a new Range
object.
firstRow | Number | Required. The starting row |
lastRow | Number | Required. The ending row |
- Range.clone()
- 返回值: Range
Returns a duplicate of the calling range.
- Range.collapseRows()
- 返回值: Range
Returns a range containing the starting and ending rows of the original range, but with a column value of 0
.
Checks the row and column points with the row and column points of the calling range.
row | Number | Required. A row point to compare with |
column | Number | Required. A column point to compare with |
Checks the row and column points with the row and column points of the calling range.
row | Number | Required. A row point to compare with |
column | Number | Required. A column point to compare with |
Checks the row and column points with the row and column points of the calling range.
row | Number | Required. A row point to compare with |
column | Number | Required. A column point to compare with |
Checks the row and column points of p
with the row and column points of the calling range.
p | Range | Required. A point to compare with |
Compares this
range (A) with another range (B).
range | Range | Required. A range to compare with |
Checks the row and column points with the row and column points of the calling range.
row | Number | Required. A row point to compare with |
column | Number | Required. A column point to compare with |
Returns true
if the row
and column
provided are within the given range. This can better be expressed as returning true
if:
this.start.row <= row <= this.end.row &&
this.start.column <= column <= this.end.column
row | Number | Required. A row to check for |
column | Number | Required. A column to check for |
Checks the start and end points of range
and compares them to the calling range. Returns true
if the range
is contained within the caller's range.
range | Range | Required. A range to compare with |
Changes the row and column points for the calling range for both the starting and ending points.
row | Number | Required. A new row to extend to |
column | Number | Required. A new column to extend to |
Creates and returns a new Range
based on the row and column of the given parameters.
start | Range | Required. A starting point to use |
end | Range | Required. An ending point to use |
Returns true
if the row
and column
are within the given range.
row | Number | Required. A row point to compare with |
column | Number | Required. A column point to compare with |
Returns true
if the row
and column
are within the given range's ending points.
row | Number | Required. A row point to compare with |
column | Number | Required. A column point to compare with |
Returns true
if the row
and column
are within the given range's starting points.
row | Number | Required. A row point to compare with |
column | Number | Required. A column point to compare with |
Returns true
if passed in range
intersects with the one calling this method.
range | Range | Required. A range to compare with |
- Range.isEmpty()
Returns true
if the caller's ending row point is the same as row
, and if the caller's ending column is the same as column
.
row | Number | Required. A row point to compare with |
column | Number | Required. A column point to compare with |
Returns true
if and only if the starting row and column, and ending row and column, are equivalent to those given by range
.
range | Range | Required. A range to check against |
- Range.isMultiLine()
- 返回值: Boolean
Returns true
if the range spans across multiple lines.
Returns true
if the caller's starting row point is the same as row
, and if the caller's starting column is the same as column
.
row | Number | Required. A row point to compare with |
column | Number | Required. A column point to compare with |
Sets the starting row and column for the range.
row | Number | Required. A row point to set |
column | Number | Required. A column point to set |
Sets the starting row and column for the range.
row | Number | Required. A row point to set |
column | Number | Required. A column point to set |
- Range.toScreenRange(EditSession session)
- 返回值: Range
Given the current Range
, this function converts those starting and ending points into screen positions, and then returns a new Range
object.
session | EditSession | Required. The EditSession to retrieve coordinates from |
- Range.toString()
- 返回值: String
Returns a string containing the range's row and column information, given like this:
[start.row/start.column] -> [end.row/end.column]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论