Partager via


VCMidlTool.InterfaceIdentifierFileName, propriété

Obtient ou définit un nom pour le fichier d'identificateur d'interface ; le nom par défaut est idlfile_i.c.

Espace de noms :  Microsoft.VisualStudio.VCProjectEngine
Assembly :  Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)

Syntaxe

'Déclaration
Property InterfaceIdentifierFileName As String
string InterfaceIdentifierFileName { get; set; }
property String^ InterfaceIdentifierFileName {
    String^ get ();
    void set (String^ value);
}
abstract InterfaceIdentifierFileName : string with get, set
function get InterfaceIdentifierFileName () : String 
function set InterfaceIdentifierFileName (value : String)

Valeur de propriété

Type : String
Nom du fichier d'identificateur d'interface.

Notes

InterfaceIdentifierFileName expose les fonctionnalités de l'option /iid MIDL.

Exemples

Consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour savoir comment compiler et exécuter cet exemple.

L'exemple suivant modifie la propriété d'InterfaceIdentifierFileName dans l'environnement de développement intégré (IDE) :

[Visual Basic]

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs, tools As IVCCollection
        Dim cfg As VCConfiguration
        Dim tool As VCMidlTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCMIDLTool")
        tool.InterfaceIdentifierFileName = "myfile_i.c"
    End Sub
End Module

Sécurité .NET Framework

Voir aussi

Référence

VCMidlTool Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms