ITypeLibInfo.Location (Propiedad)
Obtiene o establece una cadena que contiene la ubicación del elemento especificado de la biblioteca de tipos.
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: System.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
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.