Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameter

Type

Description

FieldName

String

The partial field name to be used. All fields containing this string will have the properties set up. E.g. "Name" will cover fields "FName", "MName", "LName", etc.

FieldVisibility

Integer

Sets the visibility of the field. Values:        

  • NotSet = -1       

  • NotSet = -1

  • None = 0       

  • Visible_No_Print = 1      

  • Hidden = 2       

  • Visible = 4

FieldReadOnly

Integer

Sets the read-only level of the field. Values: 

  • NotSet = -1

  • NoRestrictions = 0

  • Read_Only = 1

FieldRequired

Integer

Sets the required level of the field. Values:

  • NotSet = -1

  • NotRequired = 0

  • Required = 1

FieldMaskFlag

Boolean

If true, the field will be masked (password field)

FieldFormat

String

Sets the format to be applied to the value of the field

FieldCalcOverride

Boolean

If true, calculations are not enabled for the field. Usually used with calculated fields, like FullName or Addr123

HiddenField

Boolean

If true, the field will be a hidden input (input type = "hidden")

FieldBackgroundColor

String

Sets the background color of the field. E.g "#CCC", or "#AABBCC"

MaxCharLength

String

Sets the maximum character length that may be entered into a field. For example, if MaxCharLength = "5", then users may not type a value into a given field that is more than 5 characters long–the value will cut off after the 5th character. However, this field may still be prefilled with data that is longer than 5 characters (maximum length only takes effect when values are manually typed onto the form by users).

...