Exemplo n.º 1
0
        private static void SwapColumnsInCellTable(Shape shape, string cellName, int col1, int col2)
        {
            Table table = Common.GetCellTable(shape, cellName);

            if (!table.IsEmpty())
            {
                table.SwapColumns(col1, col2);
                Common.SetCellTable(shape, cellName, table);
            }
        }