Application Guide

54 Alphabetical Listing
DispAt
Catalog >
Define z()=
Prgm
For n,1,3
DispAt 1,"N: ",n
Disp "Hello"
EndFor
EndPrgm
Output
z()
Iteration 1:
Line 1: N:1
Line 2: Hello
Iteration 2:
Line 1: N:2
Line 2: Hello
Line 3: Hello
Iteration 3:
Line 1: N:3
Line 2: Hello
Line 3: Hello
Line 4: Hello
Define z1()=
Prgm
For n,1,3
DispAt 1,"N: ",n
EndFor
For n,1,4
Disp "Hello"
EndFor
EndPrgm
z1()
Line 1: N:3
Line 2: Hello
Line 3: Hello
Line 4: Hello
Line 5: Hello
Error conditions:
Error Message Description
DispAt line number must be between 1 and 8 Expression evaluates the line number
outside the range 1-8 (inclusive)
Too few arguments The function or command is missing one
or more arguments.
No arguments Same as current 'syntax error' dialog
Too many arguments Limit argument. Same error as Disp.
Invalid data type First argument must be a number.
Void: DispAt void "Hello World" Datatype error is thrown