Aracılığıyla paylaş


Macros.IsRecording Özellik

Makro kaydedici eylemler şu anda kayıt olup olmadığını döndürür. Bu özellik gelen bir makro içinden kullanılmamalıdır.

Ad alanı:  EnvDTE
Derleme:  EnvDTE (EnvDTE.dll içinde)

Sözdizimi

'Bildirim
ReadOnly Property IsRecording As Boolean
bool IsRecording { get; }
property bool IsRecording {
    bool get ();
}
abstract IsRecording : bool
function get IsRecording () : boolean

Özellik Değeri

Tür: System.Boolean
Bir Boolean değeri true makro kaydedici eylemler; şu anda kaydediliyor gösterir falseBunu gösterir.

Notlar

IsRecordingyalnızca içinde eklentiler ve makrolar içinde değil kullanılmalıdır.

Örnekler

public void CodeExample(DTE2 dte, AddIn addin)
{
    // INSTRUCTIONS: Run this code, open a solution, start
    // recording a macro, then connect the addin 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);
    }
}

.NET Framework Güvenliği

Ayrıca bkz.

Başvuru

Macros Arabirim

EnvDTE Ad Alanı

Diğer Kaynaklar

Automating Repetitive Actions by Using Macros