Accusoft.FormDirector3.Net - Updated August 4, 2020
CreateNewForm Method (FormSet)




Accusoft.FormDirectorSdk Namespace > FormSet Class : CreateNewForm Method
Creates a new FormDefinition object.
Syntax
'Declaration
 
Public MustOverride Function CreateNewForm() As FormDefinition
 
'Usage
 
Dim instance As FormSet
Dim value As FormDefinition
 
value = instance.CreateNewForm()

Return Value

A new form object that you will typically place into the FormDefinitions collection of this object.
Remarks

This method creates a new form that you can place into this form set. The implementation of this method resides in the FormSetFile class or in a class you derive from FormSet.

If you derive a new class from FormSet, you must override this method with code that creates a new FormDefinition object. Normally, you will also derive a new class from the FormDefinition class and return an instance of that class instead.

See Also

Reference

FormSet Class
FormSet Members
FormSetFile.CreateNewForm Method