Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sends keystrokes to the provided control to generate the specified text string using the provided modifier keys and encoding indicator.
Namespace:  Microsoft.VisualStudio.TestTools.UITesting
Assembly:  Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)
Syntax
'Declaration
Public Shared Sub SendKeys ( _
    control As UITestControl, _
    text As String, _
    modifierKeys As ModifierKeys, _
    isEncoded As Boolean _
)
public static void SendKeys(
    UITestControl control,
    string text,
    ModifierKeys modifierKeys,
    bool isEncoded
)
public:
static void SendKeys(
    UITestControl^ control, 
    String^ text, 
    ModifierKeys modifierKeys, 
    bool isEncoded
)
static member SendKeys : 
        control:UITestControl * 
        text:string * 
        modifierKeys:ModifierKeys * 
        isEncoded:bool -> unit
public static function SendKeys(
    control : UITestControl, 
    text : String, 
    modifierKeys : ModifierKeys, 
    isEncoded : boolean
)
Parameters
- control 
 Type: Microsoft.VisualStudio.TestTools.UITesting.UITestControl- UI control to which the keys will be sent. 
- text 
 Type: String- The text for which to generate keystrokes. 
- modifierKeys 
 Type: ModifierKeys- The sum of one or more values of the ModifierKeys enumeration. 
- isEncoded 
 Type: Boolean- true if the text is encoded; otherwise, false. 
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.