字段组属性

摘要

Describe 函数将返回已添加字段组的数据集的下述属性。

可将字段组添加到地理数据库要素类。返回的 dataType 是要素类或表的 dataType

条件值添加到数据集时需要使用字段组。

属性

属性说明数据类型
fieldNames
(只读)

参与字段组的字段名称列表。

String
isEditingRestrictive
(只读)

指示字段组是否具有限制性编辑体验。

  • True - 字段组具有限制性。
  • False - 字段组不具有限制性。

Boolean
name
(只读)

字段组的名称。

String

代码示例

字段组属性示例(独立脚本)

以下独立 Python 脚本用于打印要素类字段组属性的报表。

# Import the required modules
import arcpy
# Path to the input feature class or table
fc = "C:\\MyProject\\MyDatabase.sde\\myGDB.USER1.MapleTrees"
# Print a report of the field group properties
fieldGroups = arcpy.Describe(fc).fieldGroups
for fg in fieldGroups:
    print("Field Group Name: {}\nFields: {}\nRestrictive: {}\n".format(
        fg.name, fg.fieldNames, fg.isEditingRestrictive))

在本主题中