7.5

Table Of Contents
Syntax
ord( string ) integer value
Argument
string
String value whose ASCII value is returned. Only the first character is considered.
Code Sample Example
This example shows how to determine if a character is lowercase or uppercase.
Example
define(&data,string,'a') %Define sample string
if((ord(&data)>=97) and (ord(&data)<=122))
%Test lowercase
show(&data+' is lowercase')
elseif()
if((ord(&data)>=65) and (ord(&data)<=90))
%Test uppercase
show(&data+' is uppercase')
elseif()
show(&data+' is not between A and Z or a to z')
endif()
endif()
OutputDebugString (procedure)
Outputs a string to the PlanetPress Talk Messages window in PlanetPress.
Syntax
outputdebugstring(message)
Argument
message
String value to display in the PlanetPress Talk Messages window.
PassThrough (procedure)
Sends a literal PostScript command to the printer.
©2010 Objectif Lune Inc - 311 -