if (CheckEXCS(text, out string id, out string title))
{
hwp.Run(“Cancel”);
hwp.Run(“BreakPara”);
// 표 생성
CreateTable(2, 1, 150, 10);
// 표 문서 중앙 정렬
hwp.Run("MoveRight");
hwp.Run("MoveRight");
hwp.Run("ParagraphShapeAlignCenter");
TableParaShape(0, 0);
hwp.Run("MoveLeft");
hwp.Run("MoveUp");
var Query_back = _db.FindSectionContentFromDB("EXCS",id, title);
string tableHeader = HtmlToTextConverter.ConvertHtmlToText(Query_back.Title);
// ID 입력
InsertText(tableHeader, true);
hwp.HAction.Run("CharShapeSizeUp"); // 글자 크기 증가
hwp.Run("MoveDown");
// title 입력
string tableBody = HtmlToTextConverter.ConvertHtmlToText(Query_back.FinalContent);
InsertText(tableBody);
// 문서의 끝으로 이동
hwp.Run("MoveDocEnd");
hwp.Run("MoveParaBegin");
// 문서 끝의 정보 저장
hwp.GetPos(out elist, out epara, out epos);
// 마지막으로 읽은 위치 이동
hwp.SetPos(list, para, pos);
}
이런식으로 2018 아래한글 문서내 표를 생성한후 표안에 글자를 넣는데 글자 양이 너무 많은경우 글자처럼 취급해야 할거 같은데… 표를 생성 할때나 , 혹은 생성이후 글자 처럼 취급 할수 있는 방법이 없을까요 ?