help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Windows Package - How to insert a title in Word (e.g. Heading


From: John Donoghue
Subject: Re: Windows Package - How to insert a title in Word (e.g. Heading
Date: Thu, 9 Nov 2017 19:06:16 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0

On 11/09/2017 06:41 PM, Pierluigi Olmati wrote:
Thanks for your help! Very appreciated.

Thus you confirmed me to use

selection.Style = 'Heading 1'

Therefore, this limit my search on e.g.  the name of 'heading 1' on japanese ms word or using it with

Invoke()

So far this command didn't work on my machine.

Thanks,
Pierluigi



Sent from Blue
On 10 Nov 2017, at 02:52, JohnD <address@hidden> wrote:
Message: 8 Date: Thu, 9 Nov 2017 01:17:59 -0700 (MST) From: Pierluigi <address@hidden> To: address@hidden Subject: Windows Package - How to insert a title. Message-ID: <1510215479906-0.post@n4.nabble.com> Content-Type: text/plain; charset=UTF-8 Hi, I am writing for asking an advice on Windows Package. I am using it so far
with
satisfaction but I did not find yet the way to insert a title (e.g. ?Heading 1?) in Microsoft Word? even if this seems a basic argument.
Common
Matlab? like commands are not working for this. Could you recommend me a solution for this. I thank you really much in advance. Best regards, Pierluigi
You can use the activex control: pkg load windows actxWord = actxserver("Word.Application") wordHandle = invoke(actxWord.Documents,'Add'); selection = actxWord.Selection selection.InsertAfter('A heading') selection.Style = 'Heading 1' actxWord.visible=true


Please post at the bottom of the messages


'Heading 1' is a default expected style in the english/US MS word, so probably needs to be whatever the corresponding style is on your computer.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]