feedbackLineSymbol property

ArcGISSymbol? feedbackLineSymbol

The symbol used to draw the edges currently being changed by an interactive edit, when editing polyline or polygon geometries.

During an interactive edit, this symbol displays the current location of edges (polylines, or boundaries of polygons) that are changed by the interaction in progress. Unchanged lines remain displayed with GeometryEditorStyle.lineSymbol.

The default value is a dotted red SimpleLineSymbol.

Implementation

ArcGISSymbol? get feedbackLineSymbol => _feedbackLineSymbol.value;
void feedbackLineSymbol=(ArcGISSymbol? value)

Implementation

set feedbackLineSymbol(ArcGISSymbol? value) =>
    _feedbackLineSymbol.value = value;