I´m trying to do an app for PowerPoint automation. Since I am really knew on this I was woundering:

How could I know what are the possible values that I could use for the methods I´ve found.

For instance: I know that nNewValue = 2 makes the Window minimized on the code below. How can I find all the other possible values:

void _Application::SetWindowState(long nNewValue)
{
static BYTE parms[] =
VTS_I4;
InvokeHelper(0x7ed, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
nNewValue);
}

Thanks in advance!!!