type property

BarrierType type

Polyline barrier's type.

A type of polyline barrier.

Implementation

BarrierType get type {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_PolylineBarrier_getType(
      _handle,
      errorHandler,
    );
  });
  return BarrierType._fromCoreValue(
    coreValue,
  );
}
void type=(BarrierType value)

Implementation

set type(BarrierType value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PolylineBarrier_setType(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}