Compartir a través de


WizComboClass.Count (Propiedad)

Obtiene un contador de los elementos del cuadro combinado del asistente especificado.

Espacio de nombres:  Microsoft.VisualStudio.VsWizard
Ensamblado:  Microsoft.VisualStudio.VsWizard (en Microsoft.VisualStudio.VsWizard.dll)

Sintaxis

'Declaración
Public Overridable ReadOnly Property Count As Integer
public virtual int Count { get; }
public:
virtual property int Count {
    int get ();
}
abstract Count : int with get 
override Count : int with get
function get Count () : int

Valor de propiedad

Tipo: Int32
Número de elementos de el cuadro combinado del asistente.

Implementaciones

IWizCombo.Count

Ejemplos

// From the Visual C++ Add Method wizard.

function EnableDisableControls(bStock)
{
   if (bStock)
   {
      window.external.AddSymbol("DISPID_DISABLED", true);
      INTERNAL_NAME.disabled = true;
      PARAMETER_NAME.disabled = true;
      PARAMETER_TYPE.Enabled = false;
      INTERNAL_NAME_LABEL.disabled = true;
      PARAMETER_NAME_LABEL.disabled = true;
      PARAMETER_TYPE_LABEL.disabled = true;

      PARAMETERS.length = 0;
      INTERNAL_NAME.value = "";
      RETURN_TYPE_LIST.ListIndex = RETURN_TYPE_LIST.Count - 1;
      RETURN_TYPE_LIST.Enabled = false;
      RETURN_TYPE_LABEL.disabled = true;
   }
   else
   {
      window.external.AddSymbol("DISPID_DISABLED", false);
      INTERNAL_NAME.disabled = false;
      PARAMETER_NAME.disabled = false;
      PARAMETER_TYPE.Enabled = true;
      INTERNAL_NAME_LABEL.disabled = false;
      PARAMETER_NAME_LABEL.disabled = false;
      PARAMETER_TYPE_LABEL.disabled = false;

      INTERNAL_NAME.value = STOCK_METHODS.Value;
      var strInterfaceType = window.external.FindSymbol("INTERFACE_TYPE");
      var bLocalAttrib = window.external.FindSymbol("LOCAL_ATTRIB");
      if (strInterfaceType == "dispinterface" || (strInterfaceType == "custom" && bLocalAttrib))
      {
         RETURN_TYPE_LIST.Enabled = true;
         RETURN_TYPE_LABEL.disabled = false;
      }
   }
   ToggleButtons();
}

Seguridad de .NET Framework

Vea también

Referencia

WizComboClass Clase

Microsoft.VisualStudio.VsWizard (Espacio de nombres)

Otros recursos

Diseñar un asistente

Modelo de objetos de extensibilidad de Visual C++