graphicsPreset property

GraphicsPreset? get graphicsPreset

Получение режима графики. В случае null используется рекомендуемый режим. Если определить рекомендуемый режим не удалось, то используется Normal.

Implementation

GraphicsPreset? get graphicsPreset {
  _COptional_CGraphicsPreset res = _CMap_graphicsPreset(_CMapMakeDefault().._impl=_self);
  return res._toDart();
}
set graphicsPreset (GraphicsPreset? graphicsPreset)

Implementation

set graphicsPreset(GraphicsPreset? graphicsPreset) {
  var _a1 = graphicsPreset._copyFromDartTo_COptional_CGraphicsPreset();
  void res = _CMap_setGraphicsPreset_COptional_CGraphicsPreset(_CMapMakeDefault().._impl=_self, _a1);
  return res;
}