WpclsQueryEditString: Difference between revisions
Appearance
Created page with "{{DISPLAYTITLE:wpclsQueryEditString}} This method is called to allow the class object to specify the text to be used in the edit pushbutton of the palette object's open view. ==Syntax== <pre> PSZ _wpclsQueryEditString(M_WPPalette *somSelf) </pre> ==Parameters== ;''somSelf'' (M_WPPalette *) - input :Pointer to the WPPalette class object. ==Returns== ;''ppointer'' (PSZ) - returns :Pointer to the edit pushbutton string. ==Usage== This method can be called at..." |
No edit summary |
||
Line 8: | Line 8: | ||
==Parameters== | ==Parameters== | ||
;''somSelf'' ( | ;''somSelf'' (M_WPPalette *) - input | ||
:Pointer to the [[WPPalette]] class object. | :Pointer to the [[WPPalette]] class object. | ||
Latest revision as of 17:36, 28 May 2025
This method is called to allow the class object to specify the text to be used in the edit pushbutton of the palette object's open view.
Syntax
PSZ _wpclsQueryEditString(M_WPPalette *somSelf)
Parameters
- somSelf (M_WPPalette *) - input
- Pointer to the WPPalette class object.
Returns
- ppointer (PSZ) - returns
- Pointer to the edit pushbutton string.
Usage
This method can be called at any time in order to determine the text of the edit pushbutton.
How to Override
This method should be overridden in order to specify class-specific edit pushbutton text. The parent method is generally not called.