PML Commands

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

q evar pmllib - to findout the path of the pml lib

pml index - to update our form,object,function in the pml index

pml rehash all - for refresh the pml index

Finding out information about objects (variables)

q var !exampleObject - To find out a variable


q var !exampleObject.objectType() - To find out the object type of a
variable, type
q var !exampleObject.attributes() - To find out what members an object
has, type

Methods available on objects:

q var !exampleObject.methods() - To find out what methods are


available on an object
q var !exampleObject.set() - To find out is an object has been
given a value
q var !arrayVariable.size() - To find out how large an ARRAY
variable is
q var !stringVariable.length() - To find out how long a STRING
variable is, type

You might also like