ComponentOne Bitmap for WinForms
C1.Win.C1DX.4.5.2 Assembly / C1.Util.DX.Direct2D Namespace / Geometry Class / Outline Method / Outline(GeometrySink) Method
The SimplifiedGeometrySink to which the geometry's transformed outline is appended.

In This Topic
    Outline(GeometrySink) Method
    In This Topic
    Computes the outline of the geometry and writes the result to an SimplifiedGeometrySink.
    Syntax
    'Declaration
     
    Public Overloads Sub Outline( _
       ByVal geometrySink As GeometrySink _
    ) 
    public void Outline( 
       GeometrySink geometrySink
    )

    Parameters

    geometrySink
    The SimplifiedGeometrySink to which the geometry's transformed outline is appended.

    Return Value

    If the method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
    Remarks
    The {{Outline}} method allows the caller to produce a geometry with an equivalent fill to the input geometry, with the following additional properties: The output geometry contains no transverse intersections; that is, segments may touch, but they never cross.The outermost figures in the output geometry are all oriented counterclockwise. The output geometry is fill-mode invariant; that is, the fill of the geometry does not depend on the choice of the fill mode. For more information about the fill mode, see FillMode.Additionally, the {{Outline}} method can be useful in removing redundant portions of said geometries to simplify complex geometries. It can also be useful in combination with GeometryGroup to create unions among several geometries simultaneously.
    See Also