![]() | Products |
| Home » Technical Support » Elevate Web Builder Technical Support » Product Manuals » Elevate Web Builder 3 Manual » Language Reference » Defines |
{$DEFINE <Symbol>}{$UNDEF <Symbol>}{$IFDEF <Symbol>}
// Include this code if the symbol is defined
[{$ELSE}]
// Include this code if the symbol is not defined (optional)
{$ENDIF}{$IFNDEF <Symbol>}
// Include this code if the symbol is not defined
[{$ELSE}]
// Include this code if the symbol is defined (optional)
{$ENDIF}| Define | Description |
| DESIGN | Indicates that the code is being compiled for execution in the IDE |
| BROWSER | Indicates that the code is being compiled for execution in a client application |
| RUNTIME | Indicates that the code is being compiled for execution in a server application |
| CLIENT | Indicates that the code is being compiled for client usage |
| SERVER | Indicates that the code is being compiled for server usage |
| VERNNN | Indicates the major/minor version of the Elevate Web Builder compiler, where NNN is the major/minor version number (without the period between the major and minor versions) |
{$IFDEF BROWSER}
uses WebDOM;
{$ENDIF}
{$IFDEF SERVER}
uses WebSrvr;
{$ENDIF}This web page was last updated on Tuesday, September 16, 2025 at 04:56 PM | Privacy Policy © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

