Sdílet prostřednictvím


IInterfaceInfo.ActiveType – vlastnost

Získá nebo nastaví typ rozhraní, jako eInterfaceType výčtu.

Obor názvů:  Microsoft.VisualStudio.VsWizard
Sestavení:  Microsoft.VisualStudio.VsWizard (v Microsoft.VisualStudio.VsWizard.dll)

Syntaxe

'Deklarace
Property ActiveType As eInterfaceType
eInterfaceType ActiveType { get; set; }
property eInterfaceType ActiveType {
    eInterfaceType get ();
    void set (eInterfaceType value);
}
abstract ActiveType : eInterfaceType with get, set
function get ActiveType () : eInterfaceType 
function set ActiveType (value : eInterfaceType)

Hodnota vlastnosti

Typ: Microsoft.VisualStudio.VsWizard.eInterfaceType
eInterfaceType Výčtu.

Příklady

// Taken from the Visual C++ Implement Interface Wizard.
function AddImplementInterfaceCode()
{
   var cInterfaces = g_aChosenInterfaces.length;
   var strMethodStubs = "";
   
   for (var iInterface = 0; iInterface < cInterfaces; iInterface++)
   {
      var nSource = g_aChosenSources[iInterface];
      var oInterface = g_aChosenInterfaces[iInterface];
      var oTypeLib = g_aChosenTypeLibs[iInterface];
   
      if (nSource != g_nSourceCodeModel && einterfaceDual == oInterface.Type)
      {
         oInterface.ActiveType = einterfaceCustom;
      }
      
      AddIncludeOrImport(nSource, oInterface, oTypeLib);
      AddBase(nSource, oInterface, oTypeLib);
      AddMapEntry(nSource, oInterface);
      strMethodStubs += GenerateMethodStubs(nSource, oInterface, oTypeLib);
   }
   
   DisambiguateMapEntries();
   
   var oEditPoint = g_oParent.EndPointOf(vsCMPartBody, vsCMWhereDefinition).CreateEditPoint()
   oEditPoint.Insert(strMethodStubs);
   g_oCM.Synchronize();
   g_oParent.StartPoint.CreateEditPoint().SmartFormat(g_oParent.EndPoint);
}

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

IInterfaceInfo Rozhraní

Microsoft.VisualStudio.VsWizard – obor názvů