開発者は、バックグラウンドで実行され、Excel アクティビティを使用するプロセスを作成したいと考えています。プロセスをバックグラウンドで実行するには、Excel アプリケーション スコープ アクティビティのどのプロパティを構成する必要がありますか?
正解:B
The Visible property of the Excel Application Scope activity determines whether the Excel file is opened in the foreground or in the background. If the Visible property is set to True (default value), the Excel file is opened and displayed on the screen. If the Visible property is set to False, the Excel file is opened and processed in the background, without showing the user interface. This can improve the performance and speed of the automation, as well as avoid any interference with the user's work. Therefore, to create a process that runs in the background and uses Excel activities, the Visible property of the Excel Application Scope activity must be configured to False. References: Excel Application Scope from UiPath documentation.