>웹 프론트엔드 >JS 튜토리얼 >word_javascript 기술에 대한 javascript 작업에 대한 여러 참조 코드

word_javascript 기술에 대한 javascript 작업에 대한 여러 참조 코드

WBOY
WBOY원래의
2016-05-16 18:43:16942검색
코드 복사 코드는 다음과 같습니다.

/*
여러 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
 }
 }
*/

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.