moveColumn

moveColumn(src: Integer;
           dst: Integer);

The moveColumn method of the JadeTableSheet class can be used to move a column of the Table sheet referenced by this object. For a description of this method, see the Table control moveColumn method.

The following example of the moveColumn method moves column 4 to column 2. Column 2 becomes column 3, and column 3 becomes column 4.

table1.accessSheet(2).moveColumn(4, 2);

The following example of the moveColumn method moves column 2 to column 4. Column 3 becomes column 2, and column 4 becomes column 3.

table1.accessSheet(2).moveColumn(2, 4);