fontDecoration property

FontDecoration fontDecoration

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,
  );
}
void fontDecoration=(FontDecoration value)

Implementation

set fontDecoration(FontDecoration value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_TextSymbol_setFontDecoration(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}