Search Results for

    Show / Hide Table of Contents
    View Source

    Class PropertyTypeDisplay

    Inheritance
    System.Object
    PropertyTypeBasic
    Namespace: Umbraco.Cms.Core.Models.ContentEditing
    Assembly: Umbraco.Core.dll
    Syntax
    [DataContract(Name = "propertyType")]
    public class PropertyTypeDisplay : PropertyTypeBasic

    Properties

    View Source

    Config

    Declaration
    [DataMember(Name = "config")]
    public IDictionary<string, object>? Config { get; set; }
    Property Value
    Type Description
    System.Nullable<IDictionary<System.String, System.Object>>
    View Source

    ContentTypeId

    This is required for the UI editor to know if this particular property belongs to an inherited item or the current item.

    Declaration
    [DataMember(Name = "contentTypeId")]
    public int ContentTypeId { get; set; }
    Property Value
    Type Description
    System.Int32
    View Source

    ContentTypeName

    This is required for the UI editor to know which content type name this property belongs to based on the property inheritance structure

    Declaration
    [DataMember(Name = "contentTypeName")]
    public string ContentTypeName { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    Editor

    Declaration
    [DataMember(Name = "editor")]
    public string Editor { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    Locked

    Gets a value indicating whether this property should be locked when editing.

    Declaration
    [DataMember(Name = "locked")]
    public bool Locked { get; set; }
    Property Value
    Type Description
    System.Boolean
    Remarks

    This is used for built in properties like the default MemberType properties that should not be editable from the backoffice.

    View Source

    View

    Declaration
    [DataMember(Name = "view")]
    public string View { get; set; }
    Property Value
    Type Description
    System.String
    • Improve this Doc
    • View Source
    In This Article
    • Properties
      • Config
      • ContentTypeId
      • ContentTypeName
      • Editor
      • Locked
      • View
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX