ProjectManagementPackage
내용물
[
숨다
]
ProjectManagementPackage class
프로젝트 관리 파일의 기본 메타데이터 패키지를 나타냅니다.
public sealed class ProjectManagementPackage : DocumentPackage
속성
이름 | 설명 |
---|---|
Author { get; set; } | 프로젝트 작성자를 가져오거나 설정합니다. |
Category { get; set; } | 범주를 가져오거나 설정합니다. |
Comments { get; set; } | 사용자 댓글을 가져오거나 설정합니다. |
Company { get; set; } | 회사를 가져오거나 설정합니다. |
Count { get; } | 메타데이터 속성의 수를 가져옵니다. |
CreationDate { get; set; } | 생성 날짜를 가져오거나 설정합니다. |
Guid { get; set; } | 프로젝트의 ID를 가져오거나 설정합니다. |
HyperlinkBase { get; set; } | 하이퍼링크 기준을 가져오거나 설정합니다. |
Item { get; } | 가져오기MetadataProperty 지정된 이름으로. |
Keys { get; } | 메타데이터 속성 이름의 컬렉션을 가져옵니다. |
Keywords { get; set; } | 키워드를 가져오거나 설정합니다. |
LastAuthor { get; set; } | 마지막 작성자를 가져오거나 설정합니다. |
LastPrinted { get; set; } | 프로젝트의 마지막 인쇄 시간을 가져오거나 설정합니다. |
LastSaved { get; set; } | 프로젝트가 마지막으로 저장된 날짜를 가져오거나 설정합니다. |
Manager { get; set; } | 프로젝트 관리자를 가져오거나 설정합니다. |
MetadataType { get; } | 메타데이터 유형을 가져옵니다. |
PropertyDescriptors { get; } | GroupDocs.Metadata 검색 엔진을 통해 액세스할 수 있는 속성에 대한 정보가 포함된 설명자 모음을 가져옵니다. |
Revision { get; set; } | 개정 번호를 가져오거나 설정합니다. |
SaveVersion { get; } | 프로젝트 파일이 저장된 Microsoft Office Project 버전을 가져옵니다. |
Subject { get; set; } | 제목을 가져오거나 설정합니다. |
Template { get; set; } | 템플릿을 가져오거나 설정합니다. |
Title { get; set; } | 제목을 가져오거나 설정합니다. |
행동 양식
이름 | 설명 |
---|---|
AddProperties(Func<MetadataProperty, bool>, PropertyValue) | 지정된 조건자를 만족하는 알려진 메타데이터 속성을 추가합니다. 이 작업은 재귀적이므로 중첩된 모든 패키지에도 영향을 미칩니다. |
Clear() | 패키지에서 쓰기 가능한 모든 메타데이터 속성을 제거합니다. |
ClearBuiltInProperties() | 모든 내장 메타데이터 속성을 제거합니다. |
ClearCustomProperties() | 모든 사용자 지정 메타데이터 속성을 제거합니다. |
Contains(string) | 패키지에 지정된 이름의 메타데이터 속성이 포함되어 있는지 확인합니다. |
virtual FindProperties(Func<MetadataProperty, bool>) | 지정된 조건자를 만족하는 메타데이터 속성을 찾습니다. 검색은 재귀적이므로 중첩된 모든 패키지에도 영향을 미칩니다. |
GetEnumerator() | 컬렉션을 반복하는 열거자를 반환합니다. |
Remove(string) | 지정된 이름으로 쓰기 가능한 메타데이터 속성을 제거합니다. |
virtual RemoveProperties(Func<MetadataProperty, bool>) | 지정된 조건자를 만족하는 메타데이터 속성을 제거합니다. |
virtual Sanitize() | 패키지에서 쓰기 가능한 메타데이터 속성을 제거합니다. 이 작업은 재귀적이므로 중첩된 모든 패키지에도 영향을 미칩니다. |
Set(string, bool) | 메타데이터 속성을 지정된 이름으로 추가하거나 바꿉니다. |
Set(string, DateTime) | 메타데이터 속성을 지정된 이름으로 추가하거나 바꿉니다. |
Set(string, double) | 메타데이터 속성을 지정된 이름으로 추가하거나 바꿉니다. |
Set(string, int) | 메타데이터 속성을 지정된 이름으로 추가하거나 바꿉니다. |
Set(string, string) | 메타데이터 속성을 지정된 이름으로 추가하거나 바꿉니다. |
SetProperties(Func<MetadataProperty, bool>, PropertyValue) | 지정된 술어를 만족하는 알려진 메타데이터 속성을 설정합니다. 이 작업은 재귀적이므로 중첩된 모든 패키지에도 영향을 미칩니다. 이 방법은AddProperties 그리고UpdateProperties 기존 속성이 술어를 충족하면 해당 값이 업데이트됩니다. 조건자를 충족하는 패키지에 알려진 속성이 누락된 경우 패키지에 추가됩니다. |
UpdateProperties(Func<MetadataProperty, bool>, PropertyValue) | 지정된 술어를 만족하는 알려진 메타데이터 속성을 업데이트합니다. 이 작업은 재귀적이므로 중첩된 모든 패키지에도 영향을 미칩니다. |
비고
더 알아보기
예
이 코드 샘플은 ProjectManagement 문서에서 기본 제공 속성을 업데이트하는 방법을 보여줍니다.
using (Metadata metadata = new Metadata(Constants.InputMpp))
{
var root = metadata.GetRootPackage<ProjectManagementRootPackage>();
root.DocumentProperties.Author = "test author";
root.DocumentProperties.CreationDate = DateTime.Now;
root.DocumentProperties.Company = "GroupDocs";
root.DocumentProperties.Comments = "test comment";
root.DocumentProperties.Keywords = "metadata, built-in, update";
// ...
metadata.Save(Constants.OutputMpp);
}
또한보십시오
- class DocumentPackage
- 네임스페이스 GroupDocs.Metadata.Formats.Document
- 집회 GroupDocs.Metadata