Quaero.DW.InfoField

Quaero.DW.InfoField

Quaero.DW.InfoField Class

public class Quaero.DW.InfoField : Quaero.DW.Links;
One information field attached to a document. See REST API fields

name Field

System.String (Quaero.DW.InfoField)infofield.name;
Short name of this information field. See JSON name.

i18n Field

Quaero.DW.i18n (Quaero.DW.InfoField)infofield.i18n;
Full text names of this information field. See JSON i18n.

justify Field

System.String (Quaero.DW.InfoField)infofield.justify;
Should this information field be left- or right-justified. See JSON justify.

required Field

System.Boolean (Quaero.DW.InfoField)infofield.required;
If true, this information field required. See JSON required.

hide Field

System.Boolean (Quaero.DW.InfoField)infofield.hide;
If true, this information field should be hidden from the end user. See JSON hide.

searchable Field

System.Boolean (Quaero.DW.InfoField)infofield.searchable;
If true, this information field is indexed and may be used to search the archive. See JSON searchable.

significant Field

System.Boolean (Quaero.DW.InfoField)infofield.significant;
If true, this information field is significant. See JSON significant.

Implicit Conversion To System.String

implicit public static operator System.String (Quaero.DW.InfoField field);
Implicit conversion of a InfoField into a string. The string is of course the short name of the field.

Parameters

field
[Quaero.DW.InfoField]

Returns

Example

using Quaero;

DW.InfoField f = agent.info_field( "contrat" );
DW.Criteria crit = new DW.Criteria ();
crit.fields.Add( f );