Print Settings

I’ve created a simple action using:

@Command([ViewExpandAll]);

@Command([FilePrint])

Is there a way to specify print settings programmatically? Specifically, I would like to chanage “What to Print”'s default “Selected Documents” to “Selected View”.

Subject: Print Settings

The parameters of @Command([FilePrint]) allow for some options to be passed.@Command([FilePrint];“”;“”;“”;“”;“printview”) will send the current view right to the printer.

–Rob

Subject: RE: Print Settings

Thanks Robert.

I didn’t realize this @Command allowed parameters.

Can I change the “Page Setup” from the default portait to landscape?

Subject: RE: Print Settings

Any idea on how to force legal size printing??

Subject: RE: Print Settings

This might help:

http://www-10.lotus.com/ldd/sandbox.nsf/ecc552f1ab6e46e4852568a90055c4cd/b376f26b8cbd9f1b8525694d004e24c3?OpenDocument

Gregg

Subject: RE: Print Settings

I love finding out little things like this. I’ve been a Notes developer for 6 years and I never knew you could pass parms like this…I guess it would help if I read the help database more often.

Thanks.