Enum NCWordState
Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.dll
Syntax
public enum NCWordState
Fields
Name | Description |
---|---|
Changed | Changed state means that the NCWord will output on the next call of Out() or Form(). You can use Show() method to switch the NCWord to changed state. |
Disabled | Disabled state means that the NCWord will not be output by the block at all and will not change its state until it is explicitly switched to another state (using Show() or Hide()). You can use Disable() method to switch the NCWord to Disabled state. |
Unchanged | Unchanged state means that the NCWord will NOT output on the next call of Out() or Form(). You can use Hide() method to switch the NCWord to unchanged state. |