Wanted to thank the rbti crew for the new rotate control property on the pdf 
viewer. It is helping my tablet users.

[cid:[email protected]]

Here is my eep code to rotate in the button. I have on the form startup eep to 
declare the variable vrotate text = '0'

SWITCH (.vrotate)
  CASE '0'
    PROPERTY pdfviewer pagerotation '90'
    SET VAR vrotate = '90'
    BREAK
  CASE '90'
    PROPERTY pdfviewer pagerotation '180'
    SET VAR vrotate = '180'
    BREAK
  CASE '180'
    PROPERTY pdfviewer pagerotation '270'
    SET VAR vrotate = '270'
    BREAK
  DEFAULT
    PROPERTY pdfviewer pagerotation '0'
    SET VAR vrotate = '0'
    BREAK
ENDSW
RETURN


Dan Goldberg

-- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to