Click or drag to resize
CanvasGeometryCombineWith Method (CanvasGeometry, Matrix3x2, CanvasGeometryCombine)
Returns the combination of this geometry and the specified geometry according to the specified combine operation, such as union, intersection, etc.

Namespace:  Microsoft.Graphics.Canvas.Geometry
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public CanvasGeometry CombineWith(
	CanvasGeometry otherGeometry,
	Matrix3x2 otherGeometryTransform,
	CanvasGeometryCombine combine
)

Parameters

otherGeometry
Type: Microsoft.Graphics.Canvas.GeometryCanvasGeometry
otherGeometryTransform
Type: System.NumericsMatrix3x2
combine
Type: Microsoft.Graphics.Canvas.GeometryCanvasGeometryCombine

Return Value

Type: CanvasGeometry
Remarks
Uses the default flattening tolerance and identity transform applied to the input geometry.
See Also