2015-02-06 50 views

回答

0

我試着在下面的代碼中添加一個名稱更新的新列。 我希望這是正確的。

ListObject tableObject = GetTableObject(tableName); 
tableObject.Resize(tableObject.StartRow, tableObject.StartColumn,  tableObject.EndRow, tableObject.EndColumn + 1, true); 
tableObject.ListColumns[tableObject.EndColumn - 1].Name = "UpdatedName"; 
相關問題