Sdílet prostřednictvím


WizComboClass.InsertItem – metoda

Vloží určenou položku v poli se seznamem průvodce v zadaném umístění.

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

Syntaxe

'Deklarace
Public Overridable Sub InsertItem ( _
    bstrItem As String, _
    nIndex As Integer _
)
public virtual void InsertItem(
    string bstrItem,
    int nIndex
)
public:
virtual void InsertItem(
    [InAttribute] String^ bstrItem, 
    [InAttribute] int nIndex
)
abstract InsertItem : 
        bstrItem:string * 
        nIndex:int -> unit 
override InsertItem : 
        bstrItem:string * 
        nIndex:int -> unit 
public function InsertItem(
    bstrItem : String, 
    nIndex : int
)

Parametry

  • bstrItem
    Typ: System.String
    Povinné.Řetězec identifikující zboží.
  • nIndex
    Typ: System.Int32
    Povinné.Z nuly vycházející index položky vložit.

Implementuje

IWizCombo.InsertItem(String, Int32)

Příklady

//From the default.htm for the Add Event wizard.

function InitDocument(document)
{   
   setDirection();
   
   if (window.external.FindSymbol("DOCUMENT_FIRST_LOAD"))
   {
      var L_WizardDialogTitle_Text = "Add Event Wizard";
      window.external.AddSymbol("WIZARD_DIALOG_TITLE", L_WizardDialogTitle_Text);
      window.external.SetDefaults(document);
   }
   window.external.Load(document);

      for (var nCntr = 0; nCntr < strTypes.length; nCntr++)
      {
         if (strTypes[nCntr] == "void")
            continue;

         var oOption = document.createElement("OPTION");
         oOption.text = strTypes[nCntr];
         PARAMETER_TYPE.add(oOption);
      }

      for (var nCntr = 0; nCntr < strStockEvents.length; nCntr++)
         STOCK_EVENTS.AddItem(strStockEvents[nCntr]);
      STOCK_EVENTS.InsertItem("", 0);
      
      CUSTOM.disabled = true;
      STOCK.disabled = true;
      ToggleButtons(); 
}

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

WizComboClass Třída

Microsoft.VisualStudio.VsWizard – obor názvů

Další zdroje

Návrh průvodce

Rozšířený objektový model Visual C++