Share

AcDbHostApplicationServices::displayString

C++

virtual ACDBCORE2D_PORT void displayString(
    const ACHAR* string, 
    int count
) const;

Description

The default implementation of displayString() 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 string to display, and the count of characters in the string. A simple implementation would be to use the standard function printf().

RealDWG host applications are free to call displayString() directly.

Parameters

Parameters Description
string Input string to be displayed
count Input length of the string

Links

AcDbHostApplicationServices

Was this information helpful?