Action group: Word
The action runs the specified macro in the Word-document.
More about interacting with macro:
Parameter | Description |
---|---|
Context | Word-document instance where the macro will be run. |
Macro name | Name of the macro that will be run. |
Property | Description | Type | Filling example | Mandatory field |
Parameters | ||||
Context | The instance of the Word document. | Robin.Word | Word context | Yes |
Macro name | The name of the macro to be run. | Robin.String | Yes |
The macro must be created in Word beforehand.
To begin, create a Word-document.
To do this:
This way you can either create your own macro or paste a ready-made one into this field and save it using CTRL+S.
There is a Word-document:
Run macro that swaps words.
Sub ReplaceИзбаWithДом() Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = "Изба" .Replacement.Text = "Дом" .Forward = True .Wrap = wdFindAsk .Format = False .MatchCase = False .MatchWholeWord = False .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms = False End With Selection.Find.Execute Replace:=wdReplaceAll End Sub |
Use the "Open document", "Run Macro", "Save as" actions.
Assemble a robot scheme with the actions:
The program robot completed successfully.
The document contains the result of the macro execution.