Starts a blank form. This method can only be used with user actions.
Namespace:
FreeFlow.ClientAssembly: FreeFlow.Client (in FreeFlow.Client.dll) Version: 2.0.0.135
Syntax
| C# |
|---|
public void StartBlankForm( string processName, string actionName ) |
| Visual Basic (Declaration) |
|---|
Public Sub StartBlankForm ( _ processName As String, _ actionName As String _ ) |
| Visual C++ |
|---|
public: void StartBlankForm( String^ processName, String^ actionName ) |
Parameters
- processName
- Type: System..::.String
Name of the process.
- actionName
- Type: System..::.String
Name of the action.
Examples
How to start a blank form, set some values and submit the form.
conn is an already logged-in Connection object
CopyC#
CopyVB.NET
FreeFlow.Client.ActionPage page = new FreeFlow.Client.ActionPage(); page.Connection = conn; page.StartBlankForm("Map1", "Action1"); page.Form.Field("Text1").Value = "Hello world"; page.Validate(); page.Submit();
Dim page As New FreeFlow.Client.ActionPage page.Connection = conn page.StartBlankForm("Map1", "Action1") page.Form.Field("Text1").Value = "Hello world" page.Validate() page.Submit()