본문 바로가기
개발언어/C#

[C#] 한글 컨트롤을 이용한 WinForm(C#) 표삽입

by 창용이랑 2022. 9. 16.
728x90
 private void btnAction2_Click(object sender, EventArgs e)
{
    HWPCONTROLLib.DHwpAction act = (HWPCONTROLLib.DHwpAction)axHwpCtrl1.CreateAction("TableCreate");
    HWPCONTROLLib.DHwpParameterSet set = (HWPCONTROLLib.DHwpParameterSet)act.CreateSet();
    act.GetDefault(set);

    set.SetItem("Rows", 5);
    set.SetItem("Cols", 10);

    act.Execute(set);
}

 

출처 : https://blog.naver.com/PostView.naver?blogId=miniaron&logNo=220868706260