ITypeLibInfo.Location, propriété
Obtient ou définit une chaîne contenant l'emplacement de l'élément spécifié de bibliothèque de types.
Espace de noms : Microsoft.VisualStudio.VsWizard
Assembly : Microsoft.VisualStudio.VsWizard (dans Microsoft.VisualStudio.VsWizard.dll)
Syntaxe
'Déclaration
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)
Valeur de propriété
Type : System.String
Une chaîne contenant l'emplacement de l'élément spécifié.
Exemples
// 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;
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.