Field group properties
Resumen
The Describe function returns the properties described below for datasets that have field groups added to them.
Field groups can be added to a geodatabase feature class or table. The dataType returned is the dataType of the feature class or table.
Field groups are required when adding contingent values to a dataset.
Propiedades
| Propiedad | Explicación | Tipo de datos |
|---|---|---|
|
fieldNames (Solo lectura) |
A list of the field names that participate in the field group. |
String |
|
isEditingRestrictive (Solo lectura) |
Indicates whether the field group has a restrictive editing experience.
|
Boolean |
|
name (Solo lectura) |
The name of the field group. |
String |
Muestra de código
Field group properties example
The following stand-alone Python script prints a report of the field group properties for a feature class.
# 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
field_groups = arcpy.Describe(fc).fieldGroups
for fg in field_groups:
print(f"Field Group Name: {fg.name}")
print(f"Fields: {fg.fieldNames}")
print(f"Restrictive: {fg.isEditingRestrictive}")