backgroundStyle property
UIPageControlBackgroundStyle
get
backgroundStyle
The preferred background style. Default is UIPageControlBackgroundStyleAutomatic on iOS, and UIPageControlBackgroundStyleProminent on tvOS.
Implementation
UIPageControlBackgroundStyle get backgroundStyle {
final _$$ref = object$.ref;
objc.checkOsVersionInternal('UIPageControl.backgroundStyle', iOS: (false, (14, 0, 0)));
final $ret = _objc_msgSend_10enjte(_$$ref.pointer, _sel_backgroundStyle);
return UIPageControlBackgroundStyle.fromValue($ret);
}
set
backgroundStyle
(UIPageControlBackgroundStyle value)
The preferred background style. Default is UIPageControlBackgroundStyleAutomatic on iOS, and UIPageControlBackgroundStyleProminent on tvOS.
Implementation
set backgroundStyle(UIPageControlBackgroundStyle value) {
final _$$ref = object$.ref;
objc.checkOsVersionInternal('UIPageControl.setBackgroundStyle:', iOS: (false, (14, 0, 0)));
_objc_msgSend_nurrlg(_$$ref.pointer, _sel_setBackgroundStyle_, value.value);
}