ListFieldConflictFilters

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

サマリー

バージョン対応のフィーチャクラス、テーブル、またはフィーチャ サービス レイヤー内で、フィールド競合フィルターが適用されているフィールドをリストします。

構文

ListFieldConflictFilters (table)
パラメーター説明データ タイプ
table

Input geodatabase table, feature class, or feature service layer.

String
戻り値
データ タイプ説明
String

競合フィルターが適用されている各フィールド名の文字列を含むリストが返されます。

コードのサンプル

ListFieldConflictFilters の例 1

フィールド競合フィルターをリストします。

import arcpy

# Get a list of fields with conflict filters applied and print the name.
filteredFields = arcpy.da.ListFieldConflictFilters('C:/MyProject/municipal.sde/Primary_UG')
for field in filteredFields:
    print(field)
ListFieldConflictFilters の例 2

フィーチャ サービスのフィールド競合フィルターをリストします。

import arcpy

# Get a list of fields with conflict filters applied and print the name.
filteredFields = arcpy.da.ListFieldConflictFilters('https://myserver.com/server/rest/services/MyService/FeatureServer/0')
for field in filteredFields:
    print(field)

関連トピック