ComponentOne Bitmap for WinForms
C1.Win.C1DX.4.5.2 Assembly / C1.Util.DX.Direct2D Namespace / Geometry Class / Combine Method / Combine(Geometry,CombineMode,Single,GeometrySink) Method
The geometry to combine with this instance.
The type of combine operation to perform.
The maximum bounds on the distance between points in the polygonal approximation of the geometries. Smaller values produce more accurate results but cause slower execution.
The result of the combine operation.

In This Topic
    Combine(Geometry,CombineMode,Single,GeometrySink) Method
    In This Topic
    Combines this geometry with the specified geometry and stores the result in an SimplifiedGeometrySink.
    Syntax
    'Declaration
     
    Public Overloads Sub Combine( _
       ByVal inputGeometry As Geometry, _
       ByVal combineMode As CombineMode, _
       ByVal flatteningTolerance As System.Single, _
       ByVal geometrySink As GeometrySink _
    ) 
    public void Combine( 
       Geometry inputGeometry,
       CombineMode combineMode,
       System.float flatteningTolerance,
       GeometrySink geometrySink
    )

    Parameters

    inputGeometry
    The geometry to combine with this instance.
    combineMode
    The type of combine operation to perform.
    flatteningTolerance
    The maximum bounds on the distance between points in the polygonal approximation of the geometries. Smaller values produce more accurate results but cause slower execution.
    geometrySink
    The result of the combine operation.

    Return Value

    If the method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
    See Also