Table of Contents

Class ContentItemSelectorBaseProperties

Namespace
Kentico.Xperience.Admin.Base.Forms
Assembly
Kentico.Xperience.Admin.Base.dll

Base class for properties of selectors derived from ContentItemSelectorComponentBase<TProperties>

public abstract class ContentItemSelectorBaseProperties : FormComponentProperties, IFormComponentProperties
Inheritance
object
ContentItemSelectorBaseProperties
Implements
Derived
Inherited Members
Extension Methods

Properties

AllowedContentItemTypeIdentifiers

Marks supported content item types.

public abstract IEnumerable<Guid> AllowedContentItemTypeIdentifiers { get; }

Property Value

IEnumerable<Guid>

AllowedSchemaIdentifiers

Marks supported reusable field schemas.

public virtual IEnumerable<string> AllowedSchemaIdentifiers { get; }

Property Value

IEnumerable<string>

Remarks

Stores reusable field schema guids as strings.

MaximumItems

Maximum number of selected content items.

[IntegerFieldComparisonValidationRule(NumericFieldComparisonTypes.GreaterThanOrEqual, "MinimumItems", true)]
[MinimumIntegerValueValidationRule(0)]
public int? MaximumItems { get; set; }

Property Value

int?

MinimumItems

Minimum number of selected content items.

[IntegerFieldComparisonValidationRule(NumericFieldComparisonTypes.LessThanOrEqual, "MaximumItems", true)]
[MinimumIntegerValueValidationRule(0)]
public int? MinimumItems { get; set; }

Property Value

int?

SelectionType

Specifies the selector selection type.

public virtual string SelectionType { get; }

Property Value

string
See Also
ContentItemSelectorSelectionType