interface XStarBasicModuleInfo in module com::sun::star::script::

(Global Index)

Syntax

interface XStarBasicModuleInfo : com::sun::star::uno::XInterface ;

Description

Script Module containing some scripting code in a certain scripting language

Method Summary

getName

getLanguage

getSource

Method Details



getName

Syntax

string getName ();

Description

Returns

Name of the module

getLanguage

Syntax

string getLanguage ();

Description

Returns

type of the script language as string; for example, "StarBasic" or "JavaScript".

getSource

Syntax

string getSource ();

Description

Returns

script source code as string.

The code has to correspond with the language defined by Language.

Top of Page