setLineSymbol method

void setLineSymbol({
  1. required int level,
  2. required ArcGISSymbol lineSymbol,
})

Set the line symbol used for the grid lines at the given resolution level.

Parameters:

  • level — The resolution level.
  • lineSymbol — The line symbol to use for the grid lines at the given resolution level.

Implementation

void setLineSymbol({
  required int level,
  required ArcGISSymbol lineSymbol,
}) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Grid_setLineSymbol(
      _handle,
      level,
      lineSymbol._handle,
      errorHandler,
    );
  });
}