Udostępnij za pośrednictwem


Metoda Macros.EmitMacroCode —

Zapisuje wiersz kodu makra, odnotowywane.Ta metoda nie powinny być wykorzystywane z w makrze.

Przestrzeń nazw:  EnvDTE
Zestaw:  EnvDTE (w EnvDTE.dll)

Składnia

'Deklaracja
Sub EmitMacroCode ( _
    Code As String _
)
void EmitMacroCode(
    string Code
)
void EmitMacroCode(
    String^ Code
)
abstract EmitMacroCode : 
        Code:string -> unit
function EmitMacroCode(
    Code : String
)

Parametry

  • Code
    Typ: String

    Wymagane.Linia kodu, aby dodać do makra.

Uwagi

Można użyć EmitMacroCode do konstruowania makr lub aby dodać kod do istniejącego makra.

Ta metoda nie powiedzie się, jeśli środowisko nie jest w trybie nagrywania makr.EmitMacroCodenależy używać tylko w dodatki.

Przykłady

public void CodeExample(DTE2 dte, AddIn addin)
{
    // INSTRUCTIONS: Run this code, open a solution, start
    // recording a macro, then connect the add-in containing this code.
    try
    {
        Macros mac = dte.Macros;
        if (mac.IsRecording)
        {
            mac.Pause();
            if (!mac.IsRecording)
                mac.Resume();
            mac.EmitMacroCode("rem Code added by the EmitMacroCode method");
            // Demonstrate these two properties return the same reference.
            bool test = mac.DTE.Equals(mac.Parent);
            if (test) MessageBox.Show("The DTE and Parent property refer to the same object.");
            else MessageBox.Show("The DTE and Parent property do not refer to the same object.");
        }
        else MessageBox.Show("Start a macro recording session and reconnect addin");
    }
    catch(Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

Macros Interfejs

Przestrzeń nazw EnvDTE

Inne zasoby

Automating Repetitive Actions by Using Macros