Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Looping through and referencing a large amount of cells, some of which are empty, while looking for something.
  • A search might go past the end of a column or row if the extent of the data is not known.
  • Creating large areas which extend past where the data is located.
    Code Block
    /* INCORRECT EXAMPLE:
    
    Area testArea = ws.CreateArea(1,1,75,75);
    
    // If the entire area is not populated with data, then this results in empty cells bebeing ing created,
    as they are a part of the area.
    */

...