2015-02-06 8 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";