ModelItem.Name 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 or sets the name or ID of the item.
public:
abstract property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
public abstract string Name { get; set; }
member this.Name : string with get, set
Public MustOverride Property Name As String
Property Value
The name or ID of the item as a String.
Remarks
Not all items need to have names, so this might return null
. Depending on the type of item and where it sits in the hierarchy, it might not always be legal to set the Name on an item. If the ItemType of this item declares a RuntimeNamePropertyAttribute
, the Name property is a direct mapping to the property dictated by that attribute.