FreeFlow class library

ActionPage Class

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

[Visual Basic]
Public Class ActionPage
    Inherits Connectable
    Implements IFolder
[C#]
public class ActionPage : Connectable, IFolder

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Example

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()

Requirements

Namespace: FreeFlow.Client

Assembly: FreeFlow.Client (in FreeFlow.Client.dll)

See Also

ActionPage Members | FreeFlow.Client Namespace