Naming Conventions: Methods usually adhere to the following conventions except
when adhering to a idiomatic existing conventions of Typescript (for example size or 'length'):
Methods returning information about the range (e.g., width, count) use a get prefix.
Methods that transform the range's data into a different type use a to prefix (e.g., toArray()).
A ICellRange represents a rectangular collection of ICell within an ISheet.
Naming Conventions: Methods usually adhere to the following conventions except when adhering to a idiomatic existing conventions of Typescript (for example
size
or 'length'):get
prefix.to
prefix (e.g.,toArray()
).See
Interface
ICellRange