Login ProductsSalesSupportDownloadsAbout |
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) For a given major verison, a compiler define is also created automatically for any minor versions that belong to the same major version, but are prior to the current minor version. For example, if the current major/minor version is 3.02, then the following compiler defines will be present: VER300, VER301, and VER302
|
{$IFDEF BROWSER} uses WebDOM; {$ENDIF} {$IFDEF SERVER} uses WebSrvr; {$ENDIF}
This web page was last updated on Thursday, November 16, 2023 at 10:39 AM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |