A folder in an action.
For a list of all members of this type, see ActionPage Members.
System.Object
FreeFlow.Client.Connectable
FreeFlow.Client.ActionPage
Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.
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()
Namespace: FreeFlow.Client
Assembly: FreeFlow.Client (in FreeFlow.Client.dll)
ActionPage Members | FreeFlow.Client Namespace