C++
virtual ACDBCORE2D_PORT void displayChar( ACHAR c ) const;
Description
The default implementation of displayChar() is a no-op. If you want to display strings being printed by database code, you must override this method. You will be passed a single character to display. A simple default implementation is the C function putch().
Parameters
Parameters | Description |
---|---|
c | Character to display |