PrintQuality in Excel using VC++

L

lkfstephen

Dear all,

Does anyone know how the set the print quality in Excel using VC++ ?

I know in VB, it can set the PrintQuality directly. But in the VC++'s
PageSetup class, it just has one function:

VARIANT PageSetupExcel::printQuality(const VARIANT& Index)
{
VARIANT result;
static BYTE parms[] =
VTS_VARIANT;
InvokeHelper(0x3fe, DISPATCH_METHOD, VT_VARIANT,
(void*)&result,
parms,
&Index);
return result;

}

Can anyone tell me how to use this function? Or more precise, how to
set
the parameter of this function?

Thank you very much.

Stephen Lai
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top