Zoom

Messages

FPCM_ZOOM

Structures

struct SFPCZoom
{
    // [in]
    int factor;
 
    // [out]
    HRESULT hr;
};

Description

Calls Zoom.

Example

void InvokeZoom(HWND hwndFlashPlayerControl, int factor)
{
    SFPCZoom info;
 
    info.factor = factor;
 
    ::SendMessage(hwndFlashPlayerControl, FPCM_ZOOM, 0, (LPARAM)&info);
 
    if FAILED(info.hr)
        // Error
    {
        // ...
    }
    else
        // OK
    {
        // ...
    }
}