WorkbookBase.ContentTypeProperties 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
통합 문서에 저장된 메타데이터를 설명하는 속성의 컬렉션을 가져옵니다.
public:
property Microsoft::Office::Core::MetaProperties ^ ContentTypeProperties { Microsoft::Office::Core::MetaProperties ^ get(); };
public Microsoft.Office.Core.MetaProperties ContentTypeProperties { get; }
member this.ContentTypeProperties : Microsoft.Office.Core.MetaProperties
Public ReadOnly Property ContentTypeProperties As MetaProperties
속성 값
통합 문서에 저장된 메타데이터를 설명하는 속성이 포함된 Microsoft.Office.Core.MetaProperties 컬렉션입니다.
예제
다음 코드 예제에서는 현재 통합 문서와 연결된 메타데이터를 검색합니다. 이 예제에서는 찾은 메타데이터 속성의 총 개수와 각 속성의 이름 및 값을 보여 주었습니다. 이 예제를 실행하려면 통합 문서를 Microsoft Office SharePoint Server 문서 라이브러리에 게시하고 이 통합 문서에 대한 사용자 지정 메타데이터 속성을 제공해야 합니다. 예를 들어 통합 문서가 게시된 문서 라이브러리에 열을 추가할 수 있습니다. 콘텐츠 형식 속성에 대한 자세한 내용은 Microsoft Office SharePoint Server 설명서를 참조하세요.
이 예제는 문서 수준 사용자 지정을 위한 것입니다.
private void GetContentTypeProperties()
{
Office.MetaProperties props = this.ContentTypeProperties;
MessageBox.Show("Number of metadata properties found: "
+ props.Count.ToString());
foreach (Office.MetaProperty prop in props)
{
MessageBox.Show("Metadata property name: " + prop.Name
+ "\r\nMetadata property value: "
+ prop.Value.ToString());
}
}
Private Sub GetContentTypeProperties()
Dim props As Office.MetaProperties = Me.ContentTypeProperties
MessageBox.Show("Number of metadata properties found: " _
+ props.Count.ToString())
For Each prop As Office.MetaProperty In props
MessageBox.Show("Metadata property name: " + prop.Name _
+ vbCrLf + "Metadata property value: " _
+ prop.Value.ToString())
Next
End Sub