Versions Compared

Key

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

Quik! offers the ability to add a custom field to a form and add values into that field. Custom fields an can be used to add annotations to a form, or for any other reason a user might want to include extra information either adjacent to or on top of existing fields. See the screenshots below for instructions on how to add custom fields to a form:

...

Property

Type

Default Value

Description

ShowButtonboolfalseShows/Hide the button
ButtonTooltipTextstringCreate and manage custom annotations for this form.The tooltip text of the button
ButtonNamestringAnnotationsThe name of the button that is displayed in the form's header

VB.NET

Dim customFieldSettings = New CustomFieldEditorSettings()
customFieldSettings.ShowButton = True
customFieldSettings.ButtonName = "Edit Form"
'No Tooltip specified. Let's leave the default value.
objQFE.SetCustomFieldEditor(customFieldSettings)

C#

var customFieldSettings = new CustomFieldEditorSettings();
customFieldSettings.ShowButton = true;
customFieldSettings.ButtonName = "Edit Form";
//No Tooltip specified. Let's leave the default value.
objQFE.SetCustomFieldEditor(customFieldSettings);