_Application.Run Method

Runs a macro or calls a function.

Namespace:  Microsoft.Office.Interop.Excel
Assembly:  Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)

Syntax

'Declaration
Function Run ( _
    Macro As Object, _
    Arg1 As Object, _
    Arg2 As Object, _
    Arg3 As Object, _
    Arg4 As Object, _
    Arg5 As Object, _
    Arg6 As Object, _
    Arg7 As Object, _
    Arg8 As Object, _
    Arg9 As Object, _
    Arg10 As Object, _
    Arg11 As Object, _
    Arg12 As Object, _
    Arg13 As Object, _
    Arg14 As Object, _
    Arg15 As Object, _
    Arg16 As Object, _
    Arg17 As Object, _
    Arg18 As Object, _
    Arg19 As Object, _
    Arg20 As Object, _
    Arg21 As Object, _
    Arg22 As Object, _
    Arg23 As Object, _
    Arg24 As Object, _
    Arg25 As Object, _
    Arg26 As Object, _
    Arg27 As Object, _
    Arg28 As Object, _
    Arg29 As Object, _
    Arg30 As Object _
) As Object
'Usage
Dim instance As _Application
Dim Macro As Object
Dim Arg1 As Object
Dim Arg2 As Object
Dim Arg3 As Object
Dim Arg4 As Object
Dim Arg5 As Object
Dim Arg6 As Object
Dim Arg7 As Object
Dim Arg8 As Object
Dim Arg9 As Object
Dim Arg10 As Object
Dim Arg11 As Object
Dim Arg12 As Object
Dim Arg13 As Object
Dim Arg14 As Object
Dim Arg15 As Object
Dim Arg16 As Object
Dim Arg17 As Object
Dim Arg18 As Object
Dim Arg19 As Object
Dim Arg20 As Object
Dim Arg21 As Object
Dim Arg22 As Object
Dim Arg23 As Object
Dim Arg24 As Object
Dim Arg25 As Object
Dim Arg26 As Object
Dim Arg27 As Object
Dim Arg28 As Object
Dim Arg29 As Object
Dim Arg30 As Object
Dim returnValue As Object

returnValue = instance.Run(Macro, Arg1, _
    Arg2, Arg3, Arg4, Arg5, Arg6, Arg7, _
    Arg8, Arg9, Arg10, Arg11, Arg12, Arg13, _
    Arg14, Arg15, Arg16, Arg17, Arg18, _
    Arg19, Arg20, Arg21, Arg22, Arg23, _
    Arg24, Arg25, Arg26, Arg27, Arg28, _
    Arg29, Arg30)
Object Run(
    Object Macro,
    Object Arg1,
    Object Arg2,
    Object Arg3,
    Object Arg4,
    Object Arg5,
    Object Arg6,
    Object Arg7,
    Object Arg8,
    Object Arg9,
    Object Arg10,
    Object Arg11,
    Object Arg12,
    Object Arg13,
    Object Arg14,
    Object Arg15,
    Object Arg16,
    Object Arg17,
    Object Arg18,
    Object Arg19,
    Object Arg20,
    Object Arg21,
    Object Arg22,
    Object Arg23,
    Object Arg24,
    Object Arg25,
    Object Arg26,
    Object Arg27,
    Object Arg28,
    Object Arg29,
    Object Arg30
)

Parameters

  • Macro
    Type: System.Object

    Optional Object. The macro to run. This can be either a string with the macro name, a Range object indicating where the function is, or a register ID for a registered DLL (XLL) function. If a string is used, the string will be evaluated in the context of the active sheet.

  • Arg1
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg2
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg3
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg4
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg5
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg6
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg7
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg8
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg9
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg10
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg11
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg12
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg13
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg14
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg15
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg16
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg17
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg18
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg19
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg20
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg21
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg22
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg23
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg24
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg25
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg26
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg27
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg28
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg29
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

  • Arg30
    Type: System.Object

    Optional Object. The arguments that should be passed to the function.

Return Value

Type: System.Object

Remarks

You cannot use named arguments with this method. Arguments must be passed by position.

The Run method returns whatever the called macro returns. Objects passed as arguments to the macro are converted to values (by applying the Value property to the object). This means that you cannot pass objects to macros by using the Run method.

See Also

Reference

_Application Interface

_Application Members

Microsoft.Office.Interop.Excel Namespace