아래한글 오토메이션 머리말 꼬리말 수정

메시지박스 팝업에 대해서는 아래 정보 게시글을 참고하면 좋을 것 같습니다.

            int oldMode = hwp.SetMessageBoxMode(0x00010000);

            hwp.HAction.GetDefault("Goto", hwp.HParameterSet.HGotoE.HSet);
            hwp.HParameterSet.HGotoE.HSet.SetItem("DialogResult", 26);
            hwp.HParameterSet.HGotoE.SetSelectionIndex = 5;
            hwp.HAction.Execute("Goto", hwp.HParameterSet.HGotoE.HSet);

            hwp.SetMessageBoxMode(oldMode);

            hwp.HAction.Run("HeaderFooterModify");

            // 머리말의 전체 내용을 삭제하는 구문으로
            // 컨트롤하고자 하는 문서 상태에 따라 작성해도 되고 제거해도 됨
            hwp.HAction.Run("SelectAll");
            hwp.HAction.Run("Delete");

            // [전체 쪽 수] 컨트롤 삽입
            hwp.HAction.Run("InsertTpNo");

            // 머리말/꼬리말 닫기
            hwp.HAction.Run("CloseEx");

API 문서를 보면서 응용해보시면 좋을 것 같습니다.

감사합니다.