/*
여러 js에 대한 참조 단어 쓰기 :
this.Word.Selection.Font.Size = 16; //글꼴 크기
this.Word.Selection.Font.Bold = true; this .Word.Selection.ParagraphFormat.Alignment = 2; //0은 왼쪽 정렬, 1은 가운데 정렬, 2는 오른쪽 정렬, 숫자는 0-9만 가능합니다. 천천히 시도해 보세요.
this.Word.Selection .InsertRowsBelow(1) ; //아래 줄 추가
this.Word.Selection.MoveRight(1); //커서를 오른쪽으로 이동
this.Word.Selection.TypeText(string); //문자열만 쓸 수 있습니다
this.Word.Selection.MoveDown(); //커서가 아래로 이동합니다
this.Word.Selection.EndKey(); end
this.Word.ActiveDocument .Sections(1).Headers(1).Range.InsertAfter(string); //헤더를 쓰고
this._LoadData = function () {
//함수 바꾸기, $strFld$ 유형의 텍스트를 바꾸는 데 사용됨
함수 바꾸기( Range, strFld ) {
//[FindText], [MatchCase], [MatchWholeWord ], [MatchWildcards], [MatchSoundsLike], [ MatchAllWordForms], [Forward], [Wrap], [Format], [ReplaceWith], [Replace], [MatchKashida], [MatchDiacritics], [MatchAlefHamza], [MatchControl]
Range.Find.Execute( " $" strFld "$", true, false, false, false, false, true, wdFindContinue, false, getElValue("l" strFld) )
}
//워드 컨트롤 초기화
this._InitWord = function ()
{
try{
this.Word = new ActiveXObject("Word.Application" );
this.Word.visible = true;
this.Doc = this.Word.Documents.Open( this.TemplatePath )
this.Doc.Activate();
this.Range = this.Doc.Range();
return true
} catch(e) {
//TODO: 사용자가 수동으로 취소하는 경우 ActiveX를 실행하면 WINWORD.EXE 프로세스가 남습니다.
//"신뢰할 수 있는 사이트로 설정하고 사용자 정의 수준에서 두 번째 항목을 활성화"하지 않으면 ActiveX를 활성화하는 대화 상자가 나타나지 않습니다.
try {
if ( this.Doc ) { this.Doc.Close(0) }
if ( this.Word ) { this.Word.Quit() }
}
catch(e){}
return false
}
}
*/