Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
LOCAL loObj
loObj = EVALUATE([XFRX("XFRX#INIT")])
lnRetVal = loObj.SetParams("pdf.docx",,,,,,"NATIVE_FDOCX")
IF lnRetVal = 0
   loSession.setAuthor("author")
   loSession.setTitle("title")
   loSession.setSubject("subject")
   loSession.setKeywords("keywords")
   loSession.setCreator("creator")
   loSession.setProducer("producer")
   loSession.setCreationDate(CTODCTOT("^1900-01-01 01:01:01"))
   loSession.setComments("comments") 
   loSession.setCategory("category") 
   loSession.setManager("manager") 
   loSession.setCompany("company")
 
   ...
ENDIF 

...