Class DeveloperMetadataFinder

开发者元数据查找器

在电子表格中搜索开发者元数据。如需创建新的开发者元数据查找器,请使用 Range.createDeveloperMetadataFinder()Sheet.createDeveloperMetadataFinder()Spreadsheet.createDeveloperMetadataFinder()

方法

方法返回类型简介
find()DeveloperMetadata[]执行此搜索并返回匹配的元数据。
onIntersectingLocations()DeveloperMetadataFinder配置搜索以考虑包含元数据的相交位置。
withId(id)DeveloperMetadataFinder将此搜索限制为仅考虑与指定 ID 匹配的元数据。
withKey(key)DeveloperMetadataFinder将此搜索限制为仅考虑与指定键匹配的元数据。
withLocationType(locationType)DeveloperMetadataFinder将此搜索限制为仅考虑与指定地点类型匹配的元数据。
withValue(value)DeveloperMetadataFinder将此搜索限制为仅考虑与指定值匹配的元数据。
withVisibility(visibility)DeveloperMetadataFinder将此搜索限制为仅考虑与指定公开范围匹配的元数据。

详细文档

find()

执行此搜索并返回匹配的元数据。

返回

DeveloperMetadata[] - 与搜索条件匹配的开发者元数据。

授权

使用此方法的脚本需要获得以下一个或多个范围的授权:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

onIntersectingLocations()

配置搜索以考虑包含元数据的相交位置。此选项仅适用于范围内进行的搜索。

返回

DeveloperMetadataFinder - 开发者元数据查找器,用于链接。


withId(id)

将此搜索限制为仅考虑与指定 ID 匹配的元数据。

参数

名称类型说明
idInteger搜索元数据时要匹配的 ID。

返回

DeveloperMetadataFinder - 开发者元数据查找器,用于链接。


withKey(key)

将此搜索限制为仅考虑与指定键匹配的元数据。

参数

名称类型说明
keyString搜索元数据时要匹配的键。

返回

DeveloperMetadataFinder - 开发者元数据查找器,用于链接。


withLocationType(locationType)

将此搜索限制为仅考虑与指定地点类型匹配的元数据。

参数

名称类型说明
locationTypeDeveloperMetadataLocationType搜索元数据时要匹配的位置类型。

返回

DeveloperMetadataFinder - 开发者元数据查找器,用于链接。


withValue(value)

将此搜索限制为仅考虑与指定值匹配的元数据。

参数

名称类型说明
valueString搜索元数据时要匹配的值。

返回

DeveloperMetadataFinder - 开发者元数据查找器,用于链接。


withVisibility(visibility)

将此搜索限制为仅考虑与指定公开范围匹配的元数据。

参数

名称类型说明
visibilityDeveloperMetadataVisibility搜索元数据时要匹配的可见性。

返回

DeveloperMetadataFinder - 开发者元数据查找器,用于链接。