The 'AiHigh' function returns the High setting value of AI tag.
double @AiHigh(string tag);
Parameters
string tag : name of AI tag
Return Value
High setting value of AI tag
Example
value = @AiHigh("ai02");
Description : The High setting value of AI tag named 'ai02' is stored in the variable named 'value'.
Ex1) Assume that the setting value of AI tag is set as follows : HiHi->100, High -> 90, Low -> 30, LoLo -> 20
In this case, if ' value = @AiHigh("ai02"); ' is executed, '90' is stored in the variable named 'value'
Ex2) If you want to change the High setting value of AI tag named 'ai02', use 'Tag Member'.
' $ai02.high = 80; ' changes the High setting value of AI tag named 'ai02' into '80'
Relate items)