he vba.Range may represent an individual cells, a collection of individual
cells, a collection of rows or a collection of columns. The __call__ provides
access to items of such collection. The __call__ (or Item) takes an integer
index as the only argument. The returned value depends on the origin of the
Range object. If the Range object was returned from Rows or Columns property
then the __call__ method returns a row or a column. An otherwise generated
Range object is a collection of individual cells. A Range object with a
different rearrangement of cell indexing may obtained by calling the
properties Cells, Rows and Columns of the given Range object.
|