Class CategoryElement
Represents part of a category in a layout. The parent Category also contains information about the category itself.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Relativity.Testing.Framework.Models
Assembly: Relativity.Testing.Framework.dll
Syntax
public class CategoryElement
Properties
| Improve this Doc View SourceCategoryID
Gets or sets the artifact id of the category.
Declaration
public int CategoryID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Collapsible
Gets or sets a value indicating whether the category is collapsible.
Declaration
public bool Collapsible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
DefaultCollapsed
Gets or sets a value indicating whether the category is collapsed by default.
Declaration
public bool DefaultCollapsed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Elements
Gets or sets the fields of the category.
Declaration
public List<Element> Elements { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Element> |
Order
Gets or sets the order of the category.
Declaration
public int Order { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Title
Gets or sets the title of the category.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |