Disable Feature Binning (Data Management)

Summary

Disables feature binning on a feature class.

Usage

  • Feature binning must be enabled before you can disable it.

  • You must be connected as the data owner to run this tool.

Syntax

arcpy.management.DisableFeatureBinning(in_features)
ParameterExplanationData Type
in_features

The feature class for which feature binning will be disabled.

Feature Layer

Derived Output

NameExplanationData Type
out_features

The input feature class with feature binning disabled.

Feature Layer

Code sample

DisableFeatureBinning example (Python window)

Disable feature binning on a feature class.

import arcpy
arcpy.DisableFeatureBinning_management("C:\\MyProject\\sdeConnection.sde\\mygdb.user1.global_earthquakes")

Environments

Licensing information

  • Basic: Yes
  • Standard: Yes
  • Advanced: Yes

Related topics