Page tree

Versions Compared

Key

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

...

  • As AutoFitWidth sets the width of a column to just beyond the length of the longest cell, and as such can be seen as a very simple way to format items.
    Code Block
    /* INCORRECT CODE:
    
    ColumnProperties columnProperties;
    
    for (int i = 0; i < 3; i++)
    {
         columnProperties = ws.GetColumnProperties(i);
         columnProperties.AutoFitWidth();
    } */

Why this method causes issues:

...