selectedVertexSymbol property

ArcGISSymbol? selectedVertexSymbol

The symbol used to draw the currently selected vertex of the current geometry when editing any geometry type.

This symbol can be used to emphasize the currently selected vertex, which can be useful if you require extra emphasis in addition to the selection halo, or wish to make the selected vertex a larger target for user interactions.

Implementation

ArcGISSymbol? get selectedVertexSymbol => _selectedVertexSymbol.value;
void selectedVertexSymbol=(ArcGISSymbol? value)

Implementation

set selectedVertexSymbol(ArcGISSymbol? value) =>
    _selectedVertexSymbol.value = value;