allowsExtendedAttributes property
bool
get
allowsExtendedAttributes
iOS: introduced 15.0.0 macOS: introduced 12.0.0
Implementation
bool get allowsExtendedAttributes {
objc.checkOsVersionInternal(
'NSAttributedStringMarkdownParsingOptions.allowsExtendedAttributes',
iOS: (false, (15, 0, 0)),
macOS: (false, (12, 0, 0)),
);
return _objc_msgSend_91o635(
object$.ref.pointer,
_sel_allowsExtendedAttributes,
);
}
set
allowsExtendedAttributes
(bool value)
iOS: introduced 15.0.0 macOS: introduced 12.0.0
Implementation
set allowsExtendedAttributes(bool value) {
objc.checkOsVersionInternal(
'NSAttributedStringMarkdownParsingOptions.setAllowsExtendedAttributes:',
iOS: (false, (15, 0, 0)),
macOS: (false, (12, 0, 0)),
);
_objc_msgSend_1s56lr9(
object$.ref.pointer,
_sel_setAllowsExtendedAttributes_,
value,
);
}