--------------------------------------------------------------------------------------------- Char height command object
| 636 | // Char height command object |
| 637 | // |
| 638 | String TextAreaOverlayElement::CmdCharHeight::doGet( const void *target ) const |
| 639 | { |
| 640 | return StringConverter::toString( |
| 641 | static_cast<const TextAreaOverlayElement *>( target )->getCharHeight() ); |
| 642 | } |
| 643 | void TextAreaOverlayElement::CmdCharHeight::doSet( void *target, const String &val ) |
| 644 | { |
| 645 | static_cast<TextAreaOverlayElement *>( target )->setCharHeight( |
nothing calls this directly
no test coverage detected