Field group properties

この ArcGIS 3.0 ドキュメントはアーカイブされており、今後更新されません。 コンテンツとリンクが古い場合があります。 最新のドキュメントをご参照ください

サマリー

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.

プロパティ

プロパティ説明データ タイプ
fieldNames
(読み取り専用)

A list of the field names that participate in the field group.

String
isEditingRestrictive
(読み取り専用)

Indicates whether the field group has a restrictive editing experience.

  • True—The field group is restrictive.
  • False—The field group is not restrictive.

Boolean
name
(読み取り専用)

The name of the field group.

String

コードのサンプル

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
fieldGroups = arcpy.Describe(fc).fieldGroups
for fg in fieldGroups:
    print("Field Group Name: {}\nFields: {}\nRestrictive: {}\n".format(
        fg.name, fg.fieldNames, fg.isEditingRestrictive))