IXpsOMMatrixTransform 接口 (xpsobjectmodel.h)
指定可应用于对象模型中其他对象的仿射矩阵转换。
继承
IXpsOMMatrixTransform 接口继承自 IXpsOMShareable。 IXpsOMMatrixTransform 还具有以下类型的成员:
方法
IXpsOMMatrixTransform 接口具有这些方法。
IXpsOMMatrixTransform::Clone 创建接口的深层副本。 (IXpsOMMatrixTransform.Clone) |
IXpsOMMatrixTransform::GetMatrix 获取XPS_MATRIX结构,该结构指定转换矩阵。 |
IXpsOMMatrixTransform::SetMatrix 设置XPS_MATRIX结构,该结构指定转换矩阵。 |
注解
下面的代码示例演示了如何创建此接口的实例。
IXpsOMMatrixTransform *newInterface;
// The following value is defined outside of
// this example.
XPS_MATRIX newMatrix;
// 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->CreateMatrixTransform (
&newMatrix,
&newInterface);
if (SUCCEEDED(hr))
{
// use newInterface
newInterface->Release();
}
xpsFactory->Release();
}
else
{
// evaluate HRESULT error returned in hr
}
要求
最低受支持的客户端 | Windows 7、带 SP2 的 Windows Vista 和适用于 Windows Vista 的平台更新 [桌面应用 |UWP 应用] |
最低受支持的服务器 | Windows Server 2008 R2、Windows Server 2008 SP2 和适用于 Windows Server 2008 的平台更新 [桌面应用 |UWP 应用] |
目标平台 | Windows |
标头 | xpsobjectmodel.h |