This callback function gets called whenever a "tool tip" is about to be displayed over a button.
Copy Code
|
|
---|---|
typedef BOOL (FAR PASCAL* LPFNART_GUI_TEXTREPLACEFUNC)(
LPVOID lpPrivate,
DWORD dwTextID,
const LPSTR lpszText,
LPSTR FAR* lpszNewText
);
|
Name | Type | Description |
---|---|---|
lpPrivate | LPVOID | A far pointer to private data being passed to the callback. |
dwTextID | DWORD | The button ID. |
lpszText | const LPSTR | The current text string for the tool tip. |
lpszNewText | LPSTR FAR* | The replacement string for the tool tip. |
Returns the number of ImageGear errors that occurred during the function call.
This function does not process image pixels.
None
This callback function gives you a chance to replace the default text for the button's tool tip. Tool tips are the little text boxes that appear when you let the mouse pointer rest over an ART button. For example, if you are over the Filled Rectangle button, a small rectangle appears next to it saying "Filled Rectangle".