fontDecoration property
The type of font decoration for the text symbol.
The default value is FontDecoration.none. FontDecoration.none if an error occurs.
Implementation
FontDecoration get fontDecoration {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_TextSymbol_getFontDecoration(
_handle,
errorHandler,
);
});
return FontDecoration._fromCoreValue(
coreValue,
);
}
Implementation
set fontDecoration(FontDecoration value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_TextSymbol_setFontDecoration(
_handle,
value.coreValue,
errorHandler,
);
});
}