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