7.6

Table Of Contents
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()
PDFPageCount (function)
Returns the number of pages in the specified PDF file.
Syntax
pdfpagecount( filename ) integer
Argument
filename
String value specifying the path of the PDF file.
PDFWidth/PDFHeight (function)
Returns the width or height, in inches, of a page of a Portable Document Format (PDF) image resource.
Syntax
pdfwidth( name, page ) measure value
©2010 Objectif Lune Inc - 498 -