Summary
Removes a contingent value from a field group.
Usage
If your data is stored in an enterprise geodatabase, you must be connected as the data owner to use this tool.
Syntax
arcpy.management.RemoveContingentValue(target_table, id)
Parameter | Explanation | Data Type |
target_table | The input geodatabase feature class or table containing the contingent value that will be removed. | Table View |
id | The unique contingent value ID. To view the contingent value ID in the Contingent Values view, click the Toggle Value IDs button on the ribbon. In Python, this value can be accessed using the arcpy.da.ListContingentValues function. | String |
Derived Output
Name | Explanation | Data Type |
out_table | The updated input with the contingent value removed. | Table View; Raster Layer; Mosaic Layer |
Code sample
Remove a contingent value from a field group.
import arcpy
arcpy.RemoveContingentValue_management(
"C:\\MyProject\\myCOnn.sde\\mygdb.USER1.myFC", 10)
Environments
Licensing information
- Basic: Yes
- Standard: Yes
- Advanced: Yes