MFCDialogVariableExtender.IDType - свойство
Gets the type of the dialog variable.
Пространство имен: Microsoft.VisualStudio.VCCodeModel
Сборка: Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)
Синтаксис
'Декларация
ReadOnly Property IDType As vsCMMFCDialogVariableIDType
'Применение
Dim instance As MFCDialogVariableExtender
Dim value As vsCMMFCDialogVariableIDType
value = instance.IDType
vsCMMFCDialogVariableIDType IDType { get; }
property vsCMMFCDialogVariableIDType IDType {
vsCMMFCDialogVariableIDType get ();
}
function get IDType () : vsCMMFCDialogVariableIDType
Значение свойства
Тип: Microsoft.VisualStudio.VCCodeModel.vsCMMFCDialogVariableIDType
A 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.
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.
См. также
Ссылки
MFCDialogVariableExtender Интерфейс