Сравнение версий

Ключ

  • Эта строка добавлена.
  • Эта строка удалена.
  • Изменено форматирование.

...

Get text from clipboard Version 5 (Java)

Группа действийAction group: "Базовые действияBase actions", подгруппа subgroup: "Буфер обменаClipboard

Описание

Действие сохраняет текст из буфера в переменную типа "Строка"

Иконка действия

Image Removed

Параметры

Входные параметры

Таймаут - таймаут ожидания в миллисекундах, если буфер обмена занят другим процессом

Выходные параметры

Результат - переменная, в которую будет сохранен текст из буфера. При неудаче извлечения значения из буфера в результат будет сохранена пустая строка

Настройки

...

Description

The action saves a text from a clipboard to a variable of a "String" type.

Action icon

Image Added

Settings of parameters

PropertyDescriptionTypeFilling exampleMandatory field
Parameters
TimeoutTimeout in milliseconds if clipboard is opened in another process. Default value is 30 secondsNumeric20000No
Results
Result

A variable of type

«String»

"String" into which the text from the clipboard will be saved

String

Особые условия использования

Отсутствуют.

Пример использования

Задача

Из текстового файла необходимо прочитать текст, скопировать в буфер, получить текст из буфера и вывести в диалоговое окно.

Решение

Воспользоваться действиями "Прочитать текстовый файл", "Копировать текст в буфер", "Получить текст из буфера" и "Сообщение".

Реализация

Предусловие

Для решения задачи используется текстовый документ с данными. 

...



Special conditions of use

None.

Example of use

Task

From the text file read the text, copy to clipboard, get the text from the clipboard and display it in the dialogue window.

Solution

Use the "Read text file", "Copy text into clipboard", "Get text from clipboard", and "Show message" actions.

Implementation

Preface

To solve the problem the text document with data is used. 

  1. Move the "Read text file" action to the workspace.
    Image Added

  2. Set the "Read text file" action parameters.
    Image Added

  3. Move the "Copy text into clipboard" action to the workspace. 
    Image Added

  4. Set the "Copy text into clipboard" action parameters.
    In the "Text" field add the "Read text file" action result. 
    Image Added

  5. Move the "Get text from clipboard" action to the workspace.
    Image Added

  6. Set the "Get text from clipboard" action parameter.
    Image Added

  7. Move the "Show message" to the workspace.
    Image Added

  8. Set the "Show message" action parameter.
    In the "Show message" field add the "Get text from clipboard" action result.
    Image Added

  9. Run robot by clicking "Start" in the top panel.

Result

The program robot completed successfully. The text was obtained from the clipboard and displayed in the dialogue window

Результат

Программный робот отработал успешно. Текст получен из буфера обмена и выведен в диалоговое окно.

Image Modified