Interfaccia IXpsOMPartResources (xpsobjectmodel.h)
Fornisce l'accesso a tutte le risorse condivise basate su parti del documento XPS.
Ereditarietà
L'interfaccia IXpsOMPartResources eredita dall'interfaccia IUnknown . IXpsOMPartResources include anche questi tipi di membri:
Metodi
L'interfaccia IXpsOMPartResources include questi metodi.
IXpsOMPartResources::GetColorProfileResources Ottiene l'interfaccia IXpsOMColorProfileResourceCollection che contiene i profili colore utilizzati nel documento XPS. |
IXpsOMPartResources::GetFontResources Ottiene l'interfaccia IXpsOMFontResourceCollection contenente i tipi di carattere utilizzati nel documento XPS. |
IXpsOMPartResources::GetImageResources Ottiene l'interfaccia IXpsOMImageResourceCollection contenente le immagini utilizzate nel documento XPS. |
IXpsOMPartResources::GetRemoteDictionaryResources Ottiene l'interfaccia IXpsOMRemoteDictionaryResourceCollection che contiene i dizionari risorse remoti utilizzati nel documento XPS. |
Commenti
L'esempio di codice seguente illustra come creare un'istanza di questa interfaccia.
IXpsOMPartResources *newInterface;
// Note the implicit requirement that CoInitializeEx
// has previously been called from this thread.
hr = CoCreateInstance(
__uuidof(XpsOMObjectFactory),
NULL,
CLSCTX_INPROC_SERVER,
_uuidof(IXpsOMObjectFactory),
reinterpret_cast<LPVOID*>(&xpsFactory)
);
if (SUCCEEDED(hr))
{
hr = xpsFactory->CreatePartResources (&newInterface);
if (SUCCEEDED(hr))
{
// use newInterface
newInterface->Release();
}
xpsFactory->Release();
}
else
{
// evaluate HRESULT error returned in hr
}
Requisiti
Client minimo supportato | Windows 7, Windows Vista con SP2 e Aggiornamento della piattaforma per Windows Vista [app desktop | App UWP] |
Server minimo supportato | Windows Server 2008 R2, Windows Server 2008 con SP2 e Platform Update per Windows Server 2008 [app desktop | App UWP] |
Piattaforma di destinazione | Windows |
Intestazione | xpsobjectmodel.h |