Starts a blank form. This method can only be used with user actions.
How to start a blank form, set some values and submit the form. conn is an already logged-in Connection object
[C#]
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();
[Visual Basic]
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()
ActionPage Class | FreeFlow.Client Namespace | ActionPage.StartBlankForm Overload List