In (Reserved Word)
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;