WorkbookBase.ContentTypeProperties 属性
获取描述工作簿中存储的元数据的属性的集合。
命名空间: Microsoft.Office.Tools.Excel
程序集: Microsoft.Office.Tools.Excel.v4.0.Utilities(在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
语法
声明
Public ReadOnly Property ContentTypeProperties As MetaProperties
public MetaProperties ContentTypeProperties { get; }
属性值
类型:Microsoft.Office.Core.MetaProperties
一个 Microsoft.Office.Core.MetaProperties 集合,包含描述工作簿中存储的元数据的属性。
示例
下面的代码示例将检索与当前工作簿关联的元数据。该示例显示找到的元数据属性的总数,并在该数字后面列出每个属性的名称和值。若要运行此示例,必须将该工作簿发布到 Microsoft Office SharePoint Server 文档库,并为此工作簿提供自定义元数据属性。例如,可以在发布该工作簿的文档库中添加一列。有关内容类型属性的更多信息,请参考 Microsoft Office SharePoint Server 文档。
此示例针对的是文档级自定义项。
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
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());
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。