Form Element

The Form element is used to describe the forms in a base type.

Syntax

<Form
  Type = "DisplayForm" | "EditForm" | "NewForm"
  Url = "URL">
</Form>

Attributes

Name Description
Type Required. Indicates the type of form being described and can be one of the following values: DisplayForm, EditForm, and NewForm.
Url Required URL. Specifies the path to the form HTML file.
Parent Elements Child Elements
Forms ListFormBody, ListFormButtons, ListFormClosing, ListFormOpening

Example

The following example specifies a collection of forms used in creating custom lists.

<Forms>
  <Form Type="DisplayForm" Url="custlist\DispForm.htm"/>
  <Form Type="EditForm" Url="custlist\EditForm.htm"/>
  <Form Type="NewForm" Url="custlist\NewForm.htm"/>
</Forms>