#define Statement

Summary: Syntax

#define name value

This directive assigns the given value to name. All subsequent occurrences of name are replaced by value.

The value field takes any integer value, character string, or line of text.

The following example demonstrates the correct usage of the #define statement:

#define nonzero 1

#define USERCLASS “MyControlClass”