FreeFlow class library

BlankFormsList Class

A list containing blank forms

For a list of all members of this type, see BlankFormsList Members.

System.Object
   FreeFlow.Client.Connectable
      FreeFlow.Client.Refreshable
         FreeFlow.Client.List
            FreeFlow.Client.BlankFormsList

[Visual Basic]
Public Class BlankFormsList
    Inherits List
[C#]
public class BlankFormsList : List

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

This shows how to populate an ASP.NET DataGrid from an BlankFormsList object. Connection is an already connected Connection object. Populating a WinForms DataGrid is very similar but without a call to DataBind.

[C#]
BlankFormsList list = new BlankFormsList();
list.Connection = Connection;
list.BlankFormType = FormType.Blank;
list.RefreshItems();
dataGrid.DataSource = list.ListDataTable;
dataGrid.DataBind();

Requirements

Namespace: FreeFlow.Client

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

See Also

BlankFormsList Members | FreeFlow.Client Namespace