InputLanguageChanging Event
See Also 
SourceCode.Workflow.WizardFramework.Authentication Namespace > CredentialsDialog Class : InputLanguageChanging Event



Glossary Item Box

Syntax

Visual Basic (Declaration)  
<SRCategoryAttribute("Behavior")>
<SRDescriptionAttribute("A request by the system to change the input language for this form. This request can be refused.")>
Public Event InputLanguageChanging As InputLanguageChangingEventHandler
Visual Basic (Usage) Copy Code
Dim instance As CredentialsDialog
Dim handler As InputLanguageChangingEventHandler
 
AddHandler instance.InputLanguageChanging, handler
C#  
[SRCategory("Behavior")]
[SRDescription("A request by the system to change the input language for this form. This request can be refused.")]
public event InputLanguageChangingEventHandler InputLanguageChanging
C++/CLI  
[SRCategory("Behavior")]
[SRDescription("A request by the system to change the input language for this form. This request can be refused.")]
public:
event InputLanguageChangingEventHandler^ InputLanguageChanging

Event Data

The event handler receives an argument of type InputLanguageChangingEventArgs containing data related to this event. The following InputLanguageChangingEventArgs properties provide information specific to this event.

Property Description
Cancel (Inherited from System.ComponentModel.CancelEventArgs)  
Culture Gets the locale of the requested input language.
InputLanguage Gets a value indicating the input language.
SysCharSet Gets a value indicating whether the system default font supports the character set required for the requested input language.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also