Search
ShapeControlPoint Constructor
See Also
 





Initializes a new instance of the ShapeControlPoint class.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public ShapeControlPoint (
    string paramName,
    float defaultX,
    float minX,
    float maxX,
    UnitType xUnit,
    float defaultY,
    float minY,
    float maxY,
    UnitType yUnit
)

Visual Basic  Copy Code

Public New ( _
    paramName As String, _
    defaultX As Single, _
    minX As Single, _
    maxX As Single, _
    xUnit As UnitType, _
    defaultY As Single, _
    minY As Single, _
    maxY As Single, _
    yUnit As UnitType _
)

 Parameters

paramName

Specifies the name of the shape formula parameter corresponding to this control point.

defaultX

The initial horizontal position of this control point.

minX

The minimum horizontal position that is allowed for this control point.

maxX

The maximum horizontal position that is allowed for this control point.

xUnit

The unit used to specify the horizontal position of this control point.

defaultY

The initial vertical position of this control point.

minY

The minimum vertical position that is allowed for this control point.

maxY

The maximum vertical position that is allowed for this control point.

yUnit

The unit used to specify the vertical position of this control point.

 See Also