본문 바로가기

Etc/MicroSoft Office

PowerPoint 에 테이블 추가 하는 방법

 추가 및 관리 하는 방법
//Table 추가 

PowerPoint.Shape table = _currentSlide.Shapes.AddTable(3, 3, 0, 0, 100, 200);

//추가된 테이블의 1번째 행에 1번째 열을 선택
table.Table.Rows[1].Cells[1].Select();