INTEGRATION: CWS scriptingf6 (1.2.22); FILE MERGED
2004/09/16 15:20:24 dfoster 1.2.22.1: #i33050# Added documentation to template javascript script
This commit is contained in:
@@ -1,9 +1,29 @@
|
||||
// Hello World in JavaScript
|
||||
// Import standard OpenOffice.org API classes. For more information on
|
||||
// these classes and the OpenOffice.org API, see the OpenOffice.org
|
||||
// Developers Guide at:
|
||||
// http://api.openoffice.org/
|
||||
|
||||
importClass(Packages.com.sun.star.uno.UnoRuntime);
|
||||
importClass(Packages.com.sun.star.text.XTextDocument);
|
||||
importClass(Packages.com.sun.star.text.XText);
|
||||
importClass(Packages.com.sun.star.text.XTextRange);
|
||||
|
||||
// Import XScriptContext class. An instance of this class is available
|
||||
// to all JavaScript scripts in the global variable "XSCRIPTCONTEXT". This
|
||||
// variable can be used to access the document for which this script
|
||||
// was invoked.
|
||||
//
|
||||
// Methods available are:
|
||||
//
|
||||
// XSCRIPTCONTEXT.getDocument() returns XModel
|
||||
// XSCRIPTCONTEXT.getDesktop() returns XDesktop
|
||||
// XSCRIPTCONTEXT.getComponentContext() returns XComponentContext
|
||||
//
|
||||
// For more information on using this class see the scripting
|
||||
// developer guides at:
|
||||
//
|
||||
// http://framework.openoffice.org/scripting/index.html
|
||||
oDoc = XSCRIPTCONTEXT.getDocument();
|
||||
xTextDoc = UnoRuntime.queryInterface(XTextDocument,oDoc);
|
||||
xText = xTextDoc.getText();
|
||||
|
Reference in New Issue
Block a user