Juniper-systems Allegro CX Manual Uživatelský manuál Strana 169

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 304
  • Tabulka s obsahem
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 168
Allegro CX Owner’s Manual 169
Variables
You can use variables in tasks.
Example:
ok = YesNoBox(“Finish task?”)
if ok then
Return()
end
There are no global variables. Use a workbook to store global data.
How to Set and Get Cell Values
Use Set(reference, value) function to set cell value.
Example:
Set(A1,1000)
If you need to create a cell reference using row and column
numbers (column A has number 1), use function CellRef(col, row [,
sheetIndex]). Parameter sheetIndex is optional.
Example:
i = 1
while i < 100
Set(CellRef(1,i), i)
i = i+1
end
If Command
if condition1 then
commands
elsif condition2 then
commands
else
commands
end
Zobrazit stránku 168
1 2 ... 164 165 166 167 168 169 170 171 172 173 174 ... 303 304

Komentáře k této Příručce

Žádné komentáře