Search
Shape.GetRenderingPath Method (Rect, Double, Double, Boolean, Boolean)
See Also
 






Returns an IGraphicsPath object corresponding to the outline of the shape when rotated at the specified angle. This IGraphicsPath can (and should) be used when drawing the shape's outline.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public IGraphicsPath GetRenderingPath (
    Rect nodeBounds,
    double rotationAngle,
    double orientation,
    bool flipX,
    bool flipY
)

Visual Basic  Copy Code

Public Function GetRenderingPath( _
    nodeBounds As Rect, _
    rotationAngle As Double, _
    orientation As Double, _
    flipX As Boolean, _
    flipY As Boolean _
) As IGraphicsPath

 Parameters

nodeBounds

rotationAngle

orientation

flipX

flipY

 Return Value

 Remarks

This method returns an empty IGraphicsPath when EnableOutline is set to false regardless of the contents of the Outline property.

 See Also