WizComboClass.focus Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the cursor focus to the wizard combo box.
public:
virtual void focus() = Microsoft::VisualStudio::VsWizard::IWizCombo::focus;
public:
virtual void focus() = Microsoft::VisualStudio::VsWizard::IWizCombo::focus;
virtual void focus();
[System.Runtime.InteropServices.DispId(1610743811)]
public virtual void focus ();
[<System.Runtime.InteropServices.DispId(1610743811)>]
abstract member focus : unit -> unit
override this.focus : unit -> unit
Public Overridable Sub focus ()
Implements
- Attributes
Examples
//Taken from the Visual C++ Generic Class wizard
function InitDocument(document)
{
setDirection();
CLASS_NAME.focus();
if (window.external.FindSymbol("DOCUMENT_FIRST_LOAD"))
{
var L_WizardDialogTitle_Text = "Generic C++ Class Wizard";
window.external.AddSymbol("WIZARD_DIALOG_TITLE", L_WizardDialogTitle_Text);
window.external.SetDefaults(document);
}
window.external.Load(document);
}