In (Reserved Word)

image\trumpet2.gif Disclaimer

A modifier that indicates a method parameter is for input only.  This is the default value.

Example

The myValue parameter of myMethod is declared as an input only string value.

Method void myMethod(In String myValue)

begin
    plot1(myValue);             
end;