Interfaccia IXpsOMThumbnailGenerator (xpsobjectmodel.h)
Genera una risorsa immagine di anteprima.
Ereditarietà
L'interfaccia IXpsOMThumbnailGenerator eredita dall'interfaccia IUnknown . IXpsOMThumbnailGenerator include anche questi tipi di membri:
Metodi
L'interfaccia IXpsOMThumbnailGenerator include questi metodi.
IXpsOMThumbnailGenerator::GenerateThumbnail Genera un'immagine di anteprima di una pagina. |
Commenti
Per creare un'istanza di questa interfaccia, chiamare CoCreateInstance come illustrato nell'esempio di codice seguente.
IXpsOMThumbnailGenerator *newInterface;
// Note the implicit requirement that CoInitializeEx
// has previously been called from this thread.
hr = CoCreateInstance(
__uuidof(XpsOMThumbnailGenerator),
NULL,
CLSCTX_INPROC_SERVER,
__uuidof(IXpsOMThumbnailGenerator),
reinterpret_cast<LPVOID*>(&newInterface)
);
if (SUCCEEDED(hr))
{
// use newInterface
newInterface->Release();
}
else
{
// evaluate HRESULT error returned in hr
}
Questa interfaccia richiede XpsRasterService.dll. Se XpsRasterService.dll non è presente quando CoCreateInstance viene chiamato per creare un'istanza di IXpsOMThumbnailGenerator , CoCreateInstance restituisce E_FAIL.
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Windows 7, Windows Vista con SP2 e Aggiornamento della piattaforma per Windows Vista [solo app desktop] |
Server minimo supportato | Windows Server 2008 R2, Windows Server 2008 con SP2 e Platform Update per Windows Server 2008 [solo app desktop] |
Piattaforma di destinazione | Windows |
Intestazione | xpsobjectmodel.h |