snappedToLineSymbol property

ArcGISSymbol? snappedToLineSymbol

The symbol used to indicate an edge (segment) of a geometry during an interactive edit, when the GeometryEditor has snapped the interaction position to that edge.

This symbol is shown when an edge (segment) is the best candidate to snap the edit position to. It may be shown in addition to GeometryEditorStyle.snappedToVertexSymbol, because the end of a segment effectively shares the same position as the vertices that define the start and end of that segment.

The default value is a solid orange line.

Implementation

ArcGISSymbol? get snappedToLineSymbol => _snappedToLineSymbol.value;
void snappedToLineSymbol=(ArcGISSymbol? value)

Implementation

set snappedToLineSymbol(ArcGISSymbol? value) =>
    _snappedToLineSymbol.value = value;