Class GroupSettings
Provides information on how property groups should work. This can be used to sort and display property groups.
Inheritance
Inherited Members
Namespace: EPiServer.Shell.ObjectEditing
Assembly: EPiServer.Shell.dll
Version: 10.10.4Syntax
public class GroupSettingsConstructors
GroupSettings()
Initializes a new instance of the GroupSettings class.
Declaration
public GroupSettings()GroupSettings(String, Boolean, String, IDictionary<String, Object>)
Initializes a new instance of the GroupSettings class.
Declaration
public GroupSettings(string name, bool displayUI, string clientLayoutClass, IDictionary<string, object> options)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | name | Name that is used as an identifier for the group. | 
| System.Boolean | displayUI | States if a group will be shown on the UI. | 
| System.String | clientLayoutClass | Client class used to layout the property group, usually a DOJO widget. | 
| System.Collections.Generic.IDictionary<System.String, System.Object> | options | The options. | 
Properties
ClientLayoutClass
Gets or sets the client class used to layout the property group, usually a DOJO widget.
Declaration
public string ClientLayoutClass { get; set; }Property Value
| Type | Description | 
|---|---|
| System.String | The client side layout class. | 
DisplayOrder
Gets or sets the display order.
Declaration
public int DisplayOrder { get; set; }Property Value
| Type | Description | 
|---|---|
| System.Int32 | The display order. | 
DisplayUI
States if a group will be shown on the UI.
Declaration
public bool DisplayUI { get; set; }Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Name
Gets or sets the name that is used as an identifier for the group.
Declaration
public string Name { get; set; }Property Value
| Type | Description | 
|---|---|
| System.String | The name. | 
Options
Gets or sets the options.
Declaration
public IDictionary<string, object> Options { get; }Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.IDictionary<System.String, System.Object> | The options. | 
Title
Gets or sets the localized title.
Declaration
public string Title { get; set; }Property Value
| Type | Description | 
|---|---|
| System.String | The title. | 
