Compartir a través de


ITypeLibInfo.Location (Propiedad)

Obtiene o establece una cadena que contiene la ubicación del elemento de biblioteca de tipos especificado.

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

Sintaxis

'Declaración
Property Location As String
string Location { get; set; }
property String^ Location {
    String^ get ();
    void set (String^ value);
}
abstract Location : string with get, set
function get Location () : String 
function set Location (value : String)

Valor de propiedad

Tipo: String
Cadena que contiene la ubicación del elemento especificado.

Ejemplos

// 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;
}

Seguridad de .NET Framework

Vea también

Referencia

ITypeLibInfo Interfaz

Microsoft.VisualStudio.VsWizard (Espacio de nombres)