Share via


FormDataObject.allowAdd Method

Sets or returns the value of the allowAdd property for the form data object.

Syntax

public int allowAdd([int value])

Run On

Client

Parameters

  • value
    Type: int
    The value to assign to the allowEdit property.

Return Value

Type: int
A FormAllowAdd enumeration value that indicates whether the allowAdd property is set to No, Restricted, or Yes.

Examples

The following example shows how to retrieve and set the allowAdd property.

// fdo previously assigned to a FormDataObject object. 
// Retrieve the allowAdd property. 
nAllowAdd = fdo.allowAdd(); 
  
// Set the allowAdd property. 
fdo.allowAdd(FormAllowAdd::Restricted);

See Also

FormDataObject Class

Form Data Source Field Properties

FormAllowAdd Enumeration