示例#1
0
        private static void RemoveColumnsFromCellTable(Shape shape, string cellName, int[] columns)
        {
            Table table = Common.GetCellTable(shape, cellName);

            if (!table.IsEmpty())
            {
                table.DeleteColumns(columns);
                Common.SetCellTable(shape, cellName, table);
            }
        }