Label | Explanation | Data Type |
Input Parcel Features
| The input parcel line layers with label positions that will be updated. | Feature Layer |
Derived Output
Label | Explanation | Data Type |
Updated Parcel Features | The updated parcel line layers. | Feature Layer |
Sets the label position of the line's COGO dimension to the left of the parcel line, to the right of the parcel line, or centered over the parcel line.
The label position is set to the right of a parcel line when the parcel edge it represents is to the right, to the left of the parcel line when the parcel edge it represents is to the left, and centered over the parcel line when boundary it represents is shared between adjacent parcels.
The direction of the parcel line determines the left and right side of the parcel line.
This tool modifies the input data. See Tools that modify or update the input data for more information and strategies to avoid undesired data changes.
The tool updates the Label Position field on the parcel line feature class to Left, Right or Centered. The parcel line label classes use the Label Position field to place COGO dimension labels.
The Label Position field of a parcel line is updated regardless of whether there are COGO dimensions in the line's COGO attribute fields.
Labels are not updated for historic parcel lines.
The tool does not set label positions for parcel fabric connection lines.
Label | Explanation | Data Type |
Input Parcel Features
| The input parcel line layers with label positions that will be updated. | Feature Layer |
Label | Explanation | Data Type |
Updated Parcel Features | The updated parcel line layers. | Feature Layer |
arcpy.parcel.SetParcelLineLabelPosition(in_parcel_features)
Name | Explanation | Data Type |
in_parcel_features [in_parcel_features,...] | The input parcel line layers with label positions that will be updated. | Feature Layer |
Name | Explanation | Data Type |
updated_parcel_features | The updated parcel line layers. | Feature Layer |
The following Python window script demonstrates how to use the SetParcelLineLabelPosition function to set line labels for two parcel line layers.
import arcpy
arcpy.parcel.SetParcelLineLabelPosition(['Tax\\Tax_Lines','Lot\\Lot_Lines'])