EntityCollection.CalendarEntity 屬性
取得行事曆的實體類型的中繼資料。
命名空間: Microsoft.Office.Project.Server.Library
組件: Microsoft.Office.Project.Server.Library (在 Microsoft.Office.Project.Server.Library.dll 中)
語法
'宣告
Public ReadOnly Property CalendarEntity As Entity
Get
'用途
Dim instance As EntityCollection
Dim value As Entity
value = instance.CalendarEntity
public Entity CalendarEntity { get; }
屬性值
類型:Microsoft.Office.Project.Server.Library.Entity
備註
若要取得之實體的 GUID 行事曆以用於 PSI 方法使用EntityCollection.Entities.CalendarEntity.UniqueId 。
範例
下列程式碼會取得的行事曆實體的 GUID。
using PSLibrary = Microsoft.Office.Project.Server.Library;
. . .
string calendarEntity = PSLibrary.EntityCollection.Entities.CalendarEntity.UniqueId;
Guid calendarEntityUid = new Guid(calendarEntity);