このオブジェクトの表示領域内のテキストを返します。
コンボ ボックス内のテキストをキャプチャする場合、テキスト文字 "6" が追加される場合があります。 これは、コンボ ボックスのドロップ ダウン矢印が Marlett フォントのドロップ ダウン矢印のテキスト記号で、他のフォントでは数字の "6" のコードにあたるためです。
result = testObject.TextCapture([captureRectangle])
result = testObject.TextCapture([captureRectangle])
変数 | 説明 |
---|---|
result | このオブジェクトの表示領域内のテキスト。 String。 |
captureRectangle | 省略可能: テキストをキャプチャする定義された矩形領域。ウィンドウの座標に相対的な値です。 Rectangle。 |
VB
Dim partialText As String partialText = testApplication.TextCapture(new Rectangle(1, 1, 200, 30)) Dim fullText As String fullText = testApplication.TextCapture()