Search Results for

    Show / Hide Table of Contents

    Class FieldMultiTagbox

    The field used to store multiple tagboxes

    Inheritance
    object
    FieldBase
    FieldMultiTagbox
    Inherited Members
    FieldBase.Id
    FieldBase.IndexId
    FieldBase.FieldNamespace
    FieldBase.Names
    FieldBase.Descriptions
    FieldBase.Required
    FieldBase.UiBehavior
    FieldBase.Index
    FieldBase.SimpleSearch
    FieldBase.Sortable
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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
    FilterBase

    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
    string

    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
    string

    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
    SchemaIndexingInfo

    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; }
    Property Value
    DisplayPatternType

    Methods

    FromJson(string)

    Declaration
    public static FieldMultiTagbox FromJson(string data)
    Parameters
    string data

    Returns
    FieldMultiTagbox

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX