Validity: Rule, Task
This variable displays the number of axes that can be managed according to the license file in the /key/ folder of the Compact flash.
Syntax |
I32 lic_axes |
---|---|
Attributes |
Read Only |
Example
from Shell RDE : DV lic_axes ; the number of axes that can be managed is displayed |
Example
; by program R3: ; based on the number of axes manageable by license ; I store in the string register sr(1) ; the appropriate string SELECT (lic_axes) CASE 4 sr(1) = "You can handle 4 axes" BREAK CASE 8 sr(1) = "You can handle 8 axes" BREAK CASE 32 sr(1) = "You can handle 32 axes" BREAK ... END_SELECT |