Class TreeLevelItem
Configures a level of a tree structure of a FieldTreeView
Inheritance
TreeLevelItem
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class TreeLevelItem
Properties
Allow recursion if the tagbox references the same schema it is defined in.
Declaration
[JsonProperty("allowRecursion", Required = Required.Always)]
public bool AllowRecursion { get; set; }
Property Value
ID of the field.
Must be a tagbox field.
Declaration
[JsonProperty("fieldId", Required = Required.Always)]
[Required]
public string FieldId { get; set; }
Property Value
Further levels of the tree based on the schema the tagbox field references.
Declaration
[JsonProperty("levels", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<TreeLevelItem> Levels { get; set; }
Property Value
Methods
Declaration
public static TreeLevelItem FromJson(string data)
Parameters
Returns