EntityCollection.OutlineCodeEntity - Propriété
Obtient les métadonnées pour le type d'entité de code hiérarchique.
Espace de noms : Microsoft.Office.Project.Server.Library
Assembly : Microsoft.Office.Project.Server.Library (dans Microsoft.Office.Project.Server.Library.dll)
Syntaxe
'Déclaration
Public ReadOnly Property OutlineCodeEntity As Entity
Get
'Utilisation
Dim instance As EntityCollection
Dim value As Entity
value = instance.OutlineCodeEntity
public Entity OutlineCodeEntity { get; }
Valeur de propriété
Type : Microsoft.Office.Project.Server.Library.Entity
Remarques
Utilisez EntityCollection.Entities.OutlineCodeEntity.UniqueId pour obtenir le GUID de l'entité de code hiérarchique pour une utilisation dans les méthodes PSI.
Exemples
Le code suivant obtient le GUID de l'entité de code hiérarchique.
using PSLibrary = Microsoft.Office.Project.Server.Library;
. . .
string outlineCodeEntity = PSLibrary.EntityCollection.Entities.OutlineCodeEntity.UniqueId;
Guid outlineCodeEntityUid = new Guid(outlineCodeEntity);