Class FieldMultiTagbox
The field used to store multiple tagboxes
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class FieldMultiTagbox : FieldBase
Properties
Filter
An optional filter to limit the returned list items.
Declaration
[JsonProperty("filter", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public FilterBase Filter { get; set; }
Property Value
ListItemCreateTemplate
Json serialized template used for creating new list item (no logic is implemented in backend).
Declaration
[JsonProperty("listItemCreateTemplate", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string ListItemCreateTemplate { get; set; }
Property Value
MaximumItems
The maximum number of items that can be stored.
Declaration
[JsonProperty("maximumItems", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? MaximumItems { get; set; }
Property Value
int? |
MinimumItems
The minimum number of items that must be stored.
Declaration
[JsonProperty("minimumItems", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? MinimumItems { get; set; }
Property Value
int? |
SchemaId
The ID of the schema to be used as tagbox (it must be of type List).
Declaration
[JsonProperty("schemaId", Required = Required.Always)]
[Required]
public string SchemaId { get; set; }
Property Value
SchemaIndexingInfo
Indexing information of fields of the related schema identified by the SchemaId property
Declaration
[JsonProperty("schemaIndexingInfo", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public SchemaIndexingInfo SchemaIndexingInfo { get; set; }
Property Value
ViewModeDisplayPatternType
Defines the display pattern type to be used (Name or List only) when showing a tagbox item in view mode. Defaults to "Name".
The information is only consumed by the client application. No actual logic is implemented in the backend.
Declaration
[JsonProperty("viewModeDisplayPatternType", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
[JsonConverter(typeof(StringEnumConverter))]
public DisplayPatternType ViewModeDisplayPatternType { get; set; }