Interfaccia IXpsOMFontResource (xpsobjectmodel.h)
Fornisce un'interfaccia IStream a una risorsa di tipo carattere.
Ereditarietà
L'interfaccia IXpsOMFontResource eredita da IXpsOMResource. IXpsOMFontResource include anche questi tipi di membri:
Metodi
L'interfaccia IXpsOMFontResource include questi metodi.
IXpsOMFontResource::GetEmbeddingOption Ottiene l'opzione di incorporamento che verrà applicata quando la risorsa viene serializzata. |
IXpsOMFontResource::GetStream Ottiene una nuova copia di sola lettura del flusso associato a questa risorsa. (IXpsOMFontResource.GetStream) |
IXpsOMFontResource::SetContent Imposta il flusso di sola lettura da associare a questa risorsa. (IXpsOMFontResource.SetContent) |
Commenti
L'esempio di codice seguente illustra come creare un'istanza di questa interfaccia.
IXpsOMFontResource *newInterface;
IOpcPartUri *partUri;
// 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))
{
// The partUriString and acquiredStream variables
// are defined outside of this example.
hr = xpsFactory->CreatePartUri(partUriString, &partUri);
if (SUCCEEDED(hr))
{
hr = xpsFactory->CreateFontResource (
acquiredStream,
XPS_FONT_EMBEDDING_NORMAL, // normal
partUri,
FALSE, // not obfuscated
&newInterface);
if (SUCCEEDED(hr))
{
// use newInterface
newInterface->Release();
}
partUri->Release();
}
xpsFactory->Release();
}
else
{
// evaluate HRESULT error returned in hr
}
Requisiti
Requisito | Valore |
---|---|
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 |