expression.RunLegacyExtraMacro( _ ByVal macroName As String _ )
where expression is a variable that represents a Macro Object
Parameters
- macroName
- Specifies the full path of the macro to run.
expression.RunLegacyExtraMacro( _ ByVal macroName As String _ )
Exception | Description |
---|---|
IO.FileNotFoundException | Thrown if the macro file does not exist. |
Sub RunExtraMacro() Dim path As String path = "C:\Users\mikebra\Documents\Micro Focus\Reflection\extra!\lword.ebm" ThisIbmTerminal.Macro.RunLegacyExtraMacro (path) End Sub