Class Tab
Represents a tab.
Implements
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 Tab : NamedArtifact, IHasName
Properties
| Improve this Doc View SourceIconIdentifier
Gets or sets the string identifier for the icon displayed when the tab is listed in the sidebar.
Declaration
public TabIconIdentifier IconIdentifier { get; set; }
Property Value
Type | Description |
---|---|
TabIconIdentifier |
IsDefault
Gets or sets a value indicating whether flag is default.
Declaration
public bool IsDefault { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsShownInSidebar
Gets or sets a value indicating whether the tab should be displayed in the sidebar.
Declaration
public bool IsShownInSidebar { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsVisible
Gets or sets a value indicating whether flag of the Tab is visible.
Declaration
public bool IsVisible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Link
Gets or sets the link for the Tab.
Declaration
public string Link { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LinkType
Gets or sets the link type of the Tab.
Declaration
public TabLinkType LinkType { get; set; }
Property Value
Type | Description |
---|---|
TabLinkType |
ObjectType
Gets or sets the identifier for object type of the Tab.
Declaration
public NamedArtifact ObjectType { get; set; }
Property Value
Type | Description |
---|---|
NamedArtifact |
Order
Gets or sets the order of the Tab.
Declaration
public int Order { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Parent
Gets or sets the identifier for parent of the Tab.
Declaration
public Artifact Parent { get; set; }
Property Value
Type | Description |
---|---|
Artifact |
RelativityApplications
Gets or sets a list of identifiers of associated Relativity Applications for the Tab.
Declaration
public List<Artifact> RelativityApplications { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Artifact> |
Methods
| Improve this Doc View SourceFillRequiredProperties()
Fills the required properties that should be programatically set if left blank.
Declaration
public Tab FillRequiredProperties()
Returns
Type | Description |
---|---|
Tab | The same Tabinstance. |