UtilUIAutomationInsertText Method
Inserts text at the specified position of an Edit control.
Namespace: DevCase.Core.Diagnostics.ProcessesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static bool InsertText(
IntPtr hWnd,
int position,
string text
)
Public Shared Function InsertText (
hWnd As IntPtr,
position As Integer,
text As String
) As Boolean
Dim hWnd As IntPtr
Dim position As Integer
Dim text As String
Dim returnValue As Boolean
returnValue = UtilUIAutomation.InsertText(hWnd,
position, text)
public:
static bool InsertText(
IntPtr hWnd,
int position,
String^ text
)
static member InsertText :
hWnd : IntPtr *
position : int *
text : string -> bool
No code example is currently available or this language may not be supported.
- hWnd IntPtr
-
A IntPtr handle to the Edit window.
- position Int32
-
The character position where to insert the text.
- text String
-
The text to insert.
Boolean if operation succeeds,
otherwise.