NxST_SYMBOLCHANGETYPE(13) - Symbol Change Types
| #define | Value | Comments |
|---|---|---|
| Add | 0 | |
| Delete | 1 | |
| Modify | 2 |
You may use code from a helper header file
You may use the code below in your own program
// example
switch (ixMap)
{
case nxST_SYMBOLCHANGETYPE::Add: break;
case nxST_SYMBOLCHANGETYPE::Delete: break;
case nxST_SYMBOLCHANGETYPE::Modify: break;
}