• Core
  • Infrastructure
  • Web
  • Extensions
Search Results for

    Show / Hide Table of Contents
    View Source

    Class DataTypeDisplay

    Represents a data type that is being edited

    Inheritance
    System.Object
    EntityBasic
    DataTypeBasic
    Namespace: Umbraco.Cms.Core.Models.ContentEditing
    Assembly: Umbraco.Core.dll
    Syntax
    [DataContract(Name = "dataType", Namespace = "")]
    public class DataTypeDisplay : DataTypeBasic, INotificationModel

    Constructors

    View Source

    DataTypeDisplay()

    Declaration
    public DataTypeDisplay()

    Properties

    View Source

    AvailableEditors

    Declaration
    [DataMember(Name = "availableEditors")]
    public IEnumerable<PropertyEditorBasic>? AvailableEditors { get; set; }
    Property Value
    Type Description
    System.Nullable<IEnumerable<PropertyEditorBasic>>
    View Source

    Notifications

    This is used to add custom localized messages/strings to the response for the app to use for localized UI purposes.

    Declaration
    [DataMember(Name = "notifications")]
    public List<BackOfficeNotification> Notifications { get; }
    Property Value
    Type Description
    List<BackOfficeNotification>
    View Source

    PreValues

    Declaration
    [DataMember(Name = "preValues")]
    public IEnumerable<DataTypeConfigurationFieldDisplay>? PreValues { get; set; }
    Property Value
    Type Description
    System.Nullable<IEnumerable<DataTypeConfigurationFieldDisplay>>
    View Source

    SelectedEditor

    The alias of the property editor

    Declaration
    [DataMember(Name = "selectedEditor", IsRequired = true)]
    [Required]
    public string SelectedEditor { get; set; }
    Property Value
    Type Description
    System.String
    • Improve this Doc
    • View Source
    In This Article
    • Constructors
      • DataTypeDisplay()
    • Properties
      • AvailableEditors
      • Notifications
      • PreValues
      • SelectedEditor
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX