ITypeLibInfo::Location Property
Visual Studio 2015
Gets or sets a string containing the location of the specified type library item.
Assembly: Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)
// From the VC++ ImplementInterface wizard. function AddTypeLibOptionIndex(oTypeLibsSelect, iTypeLib, oTypeLib, strVersion) { var oOption = oTypeLibsSelect.options(iTypeLib - 1); oOption.text = oTypeLib.Name + "<" + (strVersion.length ? strVersion : "1.0") + ">"; oOption.value = oTypeLib.Location; }
Show: