IXpsOMFontResource-Schnittstelle (xpsobjectmodel.h)
Stellt eine IStream-Schnittstelle für eine Schriftartressource bereit.
Vererbung
Die IXpsOMFontResource-Schnittstelle erbt von IXpsOMResource. IXpsOMFontResource verfügt auch über folgende Membertypen:
Methoden
Die IXpsOMFontResource-Schnittstelle verfügt über diese Methoden.
IXpsOMFontResource::GetEmbeddingOption Ruft die Einbettungsoption ab, die angewendet wird, wenn die Ressource serialisiert wird. |
IXpsOMFontResource::GetStream Ruft eine neue schreibgeschützte Kopie des Streams ab, der dieser Ressource zugeordnet ist. (IXpsOMFontResource.GetStream) |
IXpsOMFontResource::SetContent Legt den schreibgeschützten Stream fest, der dieser Ressource zugeordnet werden soll. (IXpsOMFontResource.SetContent) |
Hinweise
Im folgenden Codebeispiel wird veranschaulicht, wie Sie eine instance dieser Schnittstelle erstellen.
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
}
Anforderungen
Anforderung | Wert |
---|---|
Unterstützte Mindestversion (Client) | Windows 7, Windows Vista mit SP2 und Plattformupdate für Windows Vista [Desktop-Apps | UWP-Apps] |
Unterstützte Mindestversion (Server) | Windows Server 2008 R2, Windows Server 2008 mit SP2 und Plattformupdate für Windows Server 2008 [Desktop-Apps | UWP-Apps] |
Zielplattform | Windows |
Kopfzeile | xpsobjectmodel.h |