Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Class GroupDefinition

The GroupDefinition class used by TabDefinition and ContentType for grouping of items.

Inheritance
System.Object
GroupDefinition
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: EPiServer.DataAbstraction
Assembly: EPiServer.dll
Version: 8.11.0
Syntax
public class GroupDefinition

Constructors

GroupDefinition(String, String, AccessLevel, Int32)

Create a instance of GroupDefinition

Declaration
public GroupDefinition(string name, string displayName, AccessLevel requiredAccess, int order)
Parameters
Type Name Description
System.String name

The name of group

System.String displayName

The display name of group

AccessLevel requiredAccess

The required access

System.Int32 order

The order of group usually used for sorting

Properties

DisplayName

The displayName of the group

Declaration
public string DisplayName { get; protected set; }
Property Value
Type Description
System.String

Name

The name of the group

Declaration
public string Name { get; protected set; }
Property Value
Type Description
System.String

Order

The order of the group

Declaration
public int Order { get; protected set; }
Property Value
Type Description
System.Int32

RequiredAccess

The required accessLevel of the group

Declaration
public AccessLevel RequiredAccess { get; protected set; }
Property Value
Type Description
AccessLevel

Extension Methods