Versions Compared

Key

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

...

The ColumnAutoSize property establishes whether or not the column automatically sizes based on the size of the table. When true, the column uses its original width to determine it's new size, which a ratio based on the widths of the other columns. Set this to false to always used the fixed width.

This property is ignored if HorizontalScroll is set.

Example

Code Block
// Force the first column to fixed width 
Set_Property(@Window:".OLE_REPORTTABLE", "OLE.ColumnAutoSize[1]", 0)

...