EntityCollection.CalendarEntity - Propriété
Obtient les métadonnées pour le type d'entité de calendrier.
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 CalendarEntity As Entity
Get
'Utilisation
Dim instance As EntityCollection
Dim value As Entity
value = instance.CalendarEntity
public Entity CalendarEntity { get; }
Valeur de propriété
Type : Microsoft.Office.Project.Server.Library.Entity
Remarques
Utilisez EntityCollection.Entities.CalendarEntity.UniqueId pour obtenir le GUID de l'entité de calendrier pour une utilisation dans les méthodes PSI.
Exemples
Le code suivant obtient le GUID de l'entité de calendrier.
using PSLibrary = Microsoft.Office.Project.Server.Library;
. . .
string calendarEntity = PSLibrary.EntityCollection.Entities.CalendarEntity.UniqueId;
Guid calendarEntityUid = new Guid(calendarEntity);