From 0b09c9e5ec6b0faedea839ee1f3aaad806006a3a Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Fri, 22 Oct 2004 12:53:14 +0000 Subject: INTEGRATION: CWS scriptingf6 (1.2.30); FILE MERGED 2004/07/23 09:55:22 dfoster 1.2.30.1: #i30606# Add descriptions to code in examples. --- scripting/examples/javascript/HelloWorld/helloworld.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'scripting/examples') diff --git a/scripting/examples/javascript/HelloWorld/helloworld.js b/scripting/examples/javascript/HelloWorld/helloworld.js index 5fb8de33e2a4..aa170def23a5 100644 --- a/scripting/examples/javascript/HelloWorld/helloworld.js +++ b/scripting/examples/javascript/HelloWorld/helloworld.js @@ -4,8 +4,13 @@ importClass(Packages.com.sun.star.text.XTextDocument); importClass(Packages.com.sun.star.text.XText); importClass(Packages.com.sun.star.text.XTextRange); +//get the document from the scripting context oDoc = XSCRIPTCONTEXT.getDocument(); +//get the XTextDocument interface xTextDoc = UnoRuntime.queryInterface(XTextDocument,oDoc); +//get the XText interface xText = xTextDoc.getText(); +//get an (empty) XTextRange interface at the end of the text xTextRange = xText.getEnd(); +//set the text in the XTextRange xTextRange.setString( "Hello World (in JavaScript)" ); -- cgit