VCDialogExtender Interface
An object providing access to an existing dialog box class in a solution.
Namespace: Microsoft.VisualStudio.VCCodeModel
Assembly: Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)
Syntax
<GuidAttribute("DF69B066-2447-11D7-8BF6-00B0D03DAA06")> _
Public Interface VCDialogExtender
Dim instance As VCDialogExtender
[GuidAttribute("DF69B066-2447-11D7-8BF6-00B0D03DAA06")]
public interface VCDialogExtender
[GuidAttribute(L"DF69B066-2447-11D7-8BF6-00B0D03DAA06")]
public interface class VCDialogExtender
public interface VCDialogExtender
Remarks
The VCDialogExtender object represents an existing dialog box class, allowing access to the ID of the dialog box.
Nota
The dialog can be either an MFC or ATL dialog box class.
See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.
Examples
This example displays the value of the ID for the dialog box implemented by the CAboutDlg class.
Sub GetDialogID()
Dim vcCM as VCCodeModel
Dim vcClass as VCCodeClass
vcCM = DTE.Solution.Item(1).CodeModel
vcClass = vcCM.Classes.Find("CAboutDlg")
MsgBox(vcClass.Extender("VCDialog").DialogID)
End Sub