MFCDialogVariableExtender.IDType Property
Visual Studio 2015
Gets the type of the dialog variable.
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
Property Value
Type: Microsoft.VisualStudio.VCCodeModel.vsCMMFCDialogVariableIDTypeA vsCMMFCDialogVariableIDType enumeration value indicating the dialog variable type.
This example displays the control ID representing each variable of the dialog box implemented by the CAboutDlg class.
' Macro code. Sub GetControlIDs() Dim vcCM as VCCodeModel Dim vcClass as VCCodeClass Dim mfcVar as VCCodeVariable vcCM = DTE.Solution.Item(1).CodeModel vcClass = vcCM.Classes.Find("CAboutDlg") For Each vcVar in vcCM.Variables MsgBox(vcVar.Extender("MFCDialogVariable").IDType.ToString) Next End Sub
See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.
Show: