Click or drag to resize

INameOwner Interface

This interface should be implemented by all objects which have an own name, i.e. member variable (do not implement this interface if the name is retrieved from somewhere else like the parent or so).

Namespace: Altaxo.Main
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public interface INameOwner : INamedObject

The INameOwner type exposes the following members.

Properties
 NameDescription
Public propertyNameThe name of the name owner. The get operation will throw an InvalidOperationException if the name is not still set (use TryGetName(String) to test for this condition). The set operation can throw an InvalidOperation exception if it is not allowed to set the name.
Top
Methods
 NameDescription
Public methodTryGetName Test if this item already has a name.
(Inherited from INamedObject)
Top
Extension Methods
 NameDescription
Public Extension MethodGetProjectFolderPropertyDocuments Gets the project folder property documents down the project folder hierarchie.
(Defined by PropertyExtensions)
Top
See Also