Translations:Macros/Python Guide/My first macro/7/ja

    From The Document Foundation Wiki

    def my_first_macro_writer():

       doc = XSCRIPTCONTEXT.getDocument()
       text = doc.getText()
       text.setString('Hello World in Python in Writer')
       return 
    

    </syntaxhighlight>