如何在不使用静态 rect 方法的情况下创建 IDOMPathGeometryPtr?
How do I create an IDOMPathGeometryPtr without using the static rect method?
我正在尝试使用 Mako SDK 创建 IDOMPathGeometry
。我打算用我自己的几何图形填充它,但我只能找到一个采用 FRect
.
的静态 create(...)
方法
如何创建一个空的 IDOMPathGeometry
来填充自己?
所有 Mako SDK 类 都可以使用 IJawsMako::createInstance(...)
方法创建。
在这种情况下,您将使用类似于以下的代码:
IDOMPathGeometryPtr pathGeometry = edlobj2IDOMPathGeometry(m_mako->createInstance(IDOMPathGeometry::classID()));
if (!pathGeometry)
{
// Handle error
}
我正在尝试使用 Mako SDK 创建 IDOMPathGeometry
。我打算用我自己的几何图形填充它,但我只能找到一个采用 FRect
.
create(...)
方法
如何创建一个空的 IDOMPathGeometry
来填充自己?
所有 Mako SDK 类 都可以使用 IJawsMako::createInstance(...)
方法创建。
在这种情况下,您将使用类似于以下的代码:
IDOMPathGeometryPtr pathGeometry = edlobj2IDOMPathGeometry(m_mako->createInstance(IDOMPathGeometry::classID()));
if (!pathGeometry)
{
// Handle error
}