Freigeben über


_WSetTitle( ) API-Bibliotheksroutine

Ändert den Titel des angegebenen Fensters in title.

void _WSetTitle(WHANDLE wh, char FAR *title)
WHANDLE wh;            /* Window handle. */
char FAR *title;            /* Window title. */

Hinweise

Sie entfernen einen Titel von einem Fenster, indem Sie (char FAR *)0 als neuen Titel übergeben.

Weitere Informationen zum Erstellen einer API-Bibliothek und ihrer Integration in Visual FoxPro finden Sie unter Zugreifen auf die Visual FoxPro-API.

Beispiel

Im folgenden Beispiel wird ein Fenster erstellt, dessen Titel mit _WSetTitle( ) definiert wird.

Visual FoxPro-Code

SET LIBRARY TO WSETTITL

C-Code

#include <pro_ext.h>

FAR Example(ParamBlk FAR *parm)
{
   WHANDLE wh;
   char FAR *buffer;

   wh = _WOpen(4,4,20,70,CLOSE | WEVENT,WINDOW_SCHEME,(Scheme FAR *)0,
      WO_SYSTEMBORDER);

   _WSetTitle(wh, "This is a window title");

   _WShow(wh);

   if ((buffer = _Alloca(128)) == 0)
   {
      _Error(182); // "Insufficient memory"
   }
   _WTitle(wh, buffer);

   _PutStr("\nThe window title is \"");
   _PutStr(buffer);
   _PutChr('"');


FoxInfo myFoxInfo[] = {
   {"ONLOAD", (FPFI) Example, CALLONLOAD, ""},
};
FoxTable _FoxTable = {
   (FoxTable FAR *) 0, sizeof(myFoxInfo)/sizeof(FoxInfo), myFoxInfo
};

Siehe auch

_WFindTitle( ) API-Bibliotheksroutine | _WTitle( ) API-Bibliotheksroutine | _WShow( ), API-Bibliotheksroutine | Zugreifen auf die Visual FoxPro-API