CustomProperties 对象 (Excel)
表示其他信息的 CustomProperty 对象的集合。 该信息可用作 XML 的元数据。
备注
使用 Worksheet 对象的 CustomProperties 属性可返回 CustomProperties 集合。
返回 CustomProperties 集合后,可以向工作表添加元数据,并根据选择使用的其他操作执行其他操作。
若要向工作表添加元数据,请在 Add 方法中使用 CustomProperties 属性。
示例
下例演示了该功能。 在此示例中,Microsoft Excel 向活动工作表添加标识符信息,并向用户返回名称和值。
Sub CheckCustomProperties()
Dim wksSheet1 As Worksheet
Set wksSheet1 = Application.ActiveSheet
' Add metadata to worksheet.
wksSheet1.CustomProperties.Add _
Name:="Market", Value:="Nasdaq"
' Display metadata.
With wksSheet1.CustomProperties.Item(1)
MsgBox .Name & vbTab & .Value
End With
End Sub
方法
属性
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。