VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / CompositeDrawingEngine Class / CompositeDrawingEngine Constructor(DrawingEngine,DrawingEngine,Boolean)
Syntax Exceptions Requirements SeeAlso
In This Topic
CompositeDrawingEngine Constructor(DrawingEngine,DrawingEngine,Boolean)
In This Topic
Initializes a new instance of the CompositeDrawingEngine class.
Syntax
'Declaration

Public Function New( _
ByVal master
The master drawing engine.
As DrawingEngine, _
ByVal slave
The slave drawing engine.
As DrawingEngine, _
ByVal useCompositeToolsFactory
A value indicating whether the engine should use composite tools factory. True - the DrawingFactory property must return the tool factory, which is a composition of tools factories of master and slave engines; false - the DrawingFactory property must return the tool factory of master engine.
As Boolean _
)

Parameters

master
The master drawing engine.
slave
The slave drawing engine.
useCompositeToolsFactory
A value indicating whether the engine should use composite tools factory. True - the DrawingFactory property must return the tool factory, which is a composition of tools factories of master and slave engines; false - the DrawingFactory property must return the tool factory of master engine.
Exceptions
ExceptionDescription
Thrown if master is null.
Thrown if slave is null.
Thrown if useCompositeToolsFactory is true.
Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also