RendererFactory2
创建并初始化实现 Renderer2
基类的自定义渲染器。
Creates and initializes a custom renderer that implements the Renderer2
base class.
abstract class RendererFactory2 {
abstract createRenderer(hostElement: any, type: RendererType2): Renderer2
abstract begin()?: void
abstract end()?: void
abstract whenRenderingDone()?: Promise<any>
}
方法
为宿主 DOM 元素创建并初始化自定义渲染器。 Creates and initializes a custom renderer for a host DOM element. | ||||||
参数
返回值新的自定义渲染器实例。
|
渲染开始时调用的回调。 A callback invoked when rendering has begun. |
参数没有参数。 返回值
|
渲染完成时调用的回调。 A callback invoked when rendering has completed. |
参数没有参数。 返回值
|
与动画的“仅测试”模式一起使用。渲染完成后通知该测试。 Use with animations test-only mode. Notifies the test when rendering has completed. |
参数没有参数。 返回值由开发人员定义函数的异步结果。
|