AttributeMetadata.AttributeOf Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the name of the attribute that this attribute extends.
public:
property System::String ^ AttributeOf { System::String ^ get(); };
[System.Runtime.Serialization.DataMember]
public string AttributeOf { get; }
[<System.Runtime.Serialization.DataMember>]
member this.AttributeOf : string
Public ReadOnly Property AttributeOf As String
Property Value
The attribute name.
- Attributes
Remarks
This property is read-only. This property will be set if the metadata attribute describes an attribute of another attribute. If this property contains a value, the attribute is for internal use only and won’t appear in the customization user interface (UI) in the web application.
If you retrieve the metadata for the lead
entity, there are three attributes that extend the accountid
attribute. They are accountidname
, accountiddsc
and accountidyominame
. For each of these three attributes, the value of the AttributeOf
property is "accountid
".