- Overview
- Custom activities
- Migrating Activities to .NET 6
- Release Notes
- Building Workflow Analyzer Rules
- Building Activities Project Settings
- Creating Custom Wizards
- Prioritize Activities by Scope
- UiPath.Activities.Api.Base
- UiPath.Studio.Activities.Api
- UiPath.Studio.Activities.Api.Activities
- UiPath.Studio.Activities.Api.BusyService
- UiPath.Studio.Activities.Api.ExpressionEditor
- UiPath.Studio.Activities.Api.Expressions
- UiPath.Studio.Activities.Api.Licensing
- UiPath.Studio.Activities.Api.Mocking
- UiPath.Studio.Activities.Api.ObjectLibrary
- UiPath.Studio.Activities.Api.PackageBindings
- UiPath.Studio.Activities.Api.ProjectProperties
- UiPath.Studio.Activities.Api.ScopedActivities
- UiPath.Studio.Activities.Api.Settings
- UiPath.Studio.Activities.Api.Wizards
- UiPath.Studio.Activities.Api.Workflow
- UiPath.Studio.Api.Controls
- UiPath.Studio.Api.Telemetry
- UiPath.Studio.Api.Theme
- Robot JavaScript SDK
- Triggers SDK
UiPath.Studio.Activities.Api.Wizards
In this section you can find more information on how to build activities using UiPath.Studio.Activities.Api.Wizards.
The execution context for a wizard.
A wizard implementation.
Type |
Name |
Description |
---|---|---|
Func<Activity> |
RunWizard |
Executes a wizard and returns the resulted activity. |
Func<IWizardExecutionContext, Task<bool>> |
RunWizardWithContainerAsync |
Executes a wizard in realtime, allowing it to directly manipulate the workflow it is called on. Takes precedence over
RunWizard , if both are implemented then only this one will be run.
The context can be used to retrieve an initially empty target container, part of the workflow, which it can manipulate freely in real time. The return value indicates whether or not the provided container should be kept as part of the workflow. In case the container should be discarded, any operations done on the workflow outside of the container should be cleaned up by the wizard. Requires Studio 2020.4 or later. |
RunWizardSettings |
RunWizardSettings |
Settings that describe this wizard's implementation capabilities. Requires Studio 2020.10 or later. |
Summary of a wizard's Ui properties.
Type |
Name |
Description |
---|---|---|
string |
DisplayName |
Translated display name. |
string |
IconUri |
Location of the icon resource in the providing assembly. |
string |
Tooltip |
Translated tooltip. |
KeyGesture |
Shortcut |
This wizard's shortcut. |
List<WizardDefinition> |
ChildrenDefinitions |
Returns sub-wizards or null if none available. |
WizardBase |
Wizard |
The wizard instance for this definition or null. |
bool |
MinimizeBeforeRun |
If
true , Studio will minimize before calling RunWizard, and restore when RunWizard returns. Requires Studio 2020.4 or later.
|
string |
RequiredStudioFeature |
|