View Source
Class PropertyTypeDisplay
Inheritance
System.Object
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 |
|
View Source
View
Declaration
[DataMember(Name = "view")]
public string View { get; set; }
Property Value
Type |
Description |
System.String |
|