ProcUnit::GetText
Gets message string
TCHAR *GetText(
TCHAR *textIdent
);
Parameters
*textIdent
|
Identification name of the message to be gotten
|
Return Value
Returns the message string of the specified identification name.
If failed to get, returns NULL.
Description
Gets the message of the specified identification name.
Using this method, you can create a multi-language application.
Wherever you handle messages, be sure to display messages after getting the message string by using this method.
Example
int Sample::MeasureDispT(ProcUnit *ptrProcUnit, int subNo, TextWindow *ptrTextWindow)
{
TCHAR *ptrMessage;
// Get the message
ptrMessage = ptrProcUnit->GetText(_T("Message0"));
}