Table of Contents

Class FormCategoryAttribute

Namespace
Kentico.Xperience.Admin.Base.FormAnnotations
Assembly
Kentico.Xperience.Admin.Base.Shared.dll

Defines a base class for form category attributes.

[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class FormCategoryAttribute : Attribute
Inheritance
object
Attribute
FormCategoryAttribute
Extension Methods

Properties

Collapsible

Gets or sets whether the form category is collapsible.

public bool Collapsible { get; set; }

Property Value

bool

IsCollapsed

Gets or sets whether the form category is collapsed on first render.

public bool IsCollapsed { get; set; }

Property Value

bool

Label

The form category label.

public string Label { get; set; }

Property Value

string

Order

Gets or sets the form category order weight in the form.

public int Order { get; set; }

Property Value

int

Remarks

The order is shared with FormComponentAttribute individual form components in the model.

Tooltip

The form category tooltip.

public string Tooltip { get; set; }

Property Value

string