VCCLCompilerTool.OmitFramePointers, propriété
Obtient ou définit une valeur indiquant si supprimer les pointeurs de frame.OmitFramePointers expose les fonctions de l'option /Oy (Omission du pointeur frame) du compilateur.
Espace de noms : Microsoft.VisualStudio.VCProjectEngine
Assembly : Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)
Syntaxe
'Déclaration
Property OmitFramePointers As Boolean
bool OmitFramePointers { get; set; }
property bool OmitFramePointers {
bool get ();
void set (bool value);
}
abstract OmitFramePointers : bool with get, set
function get OmitFramePointers () : boolean
function set OmitFramePointers (value : boolean)
Valeur de propriété
Type : System.Boolean
true si les pointeurs de frame sont supprimés ; sinon, false.
Exemples
Consultez l'Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour plus d'informations sur comment compiler et exécuter cet exemple.
L'exemple suivant modifie la propriété d'OmitFramePointers dans (IDE) l'environnement de développement intégré :
' 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 VCCLCompilerTool
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.Tools("VCCLCompilerTool")
tool.OmitFramePointers = True
End Sub
End Module
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.