Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / MultilineText Class / MultilineText Constructor / MultilineText Constructor(Plane,Point2D,String,Double,Double,Double,alignmentType,String,Boolean,Boolean)
Sketch plane
Insertion point
Text string
Text width. A string longer than "width" will be split on two or more lines (whole words are not split).
Text height
Spacing between the lines
Text alignment
The text style name (see TextStyles)
Text simplification flag
The text wrap

In This Topic
    MultilineText Constructor(Plane,Point2D,String,Double,Double,Double,alignmentType,String,Boolean,Boolean)
    In This Topic
    Sketch plane constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal sketchPlane As Plane, _
       ByVal insPoint As Point2D, _
       ByVal textString As String, _
       ByVal width As Double, _
       ByVal height As Double, _
       ByVal lineSpaceDistance As Double, _
       ByVal alignment As Text.alignmentType, _
       ByVal styleName As String, _
       ByVal simplify As Boolean, _
       Optional ByVal wrap As Boolean _
    )
    public MultilineText( 
       Plane sketchPlane,
       Point2D insPoint,
       string textString,
       double width,
       double height,
       double lineSpaceDistance,
       Text.alignmentType alignment,
       string styleName,
       bool simplify,
       bool wrap
    )

    Parameters

    sketchPlane
    Sketch plane
    insPoint
    Insertion point
    textString
    Text string
    width
    Text width. A string longer than "width" will be split on two or more lines (whole words are not split).
    height
    Text height
    lineSpaceDistance
    Spacing between the lines
    alignment
    Text alignment
    styleName
    The text style name (see TextStyles)
    simplify
    Text simplification flag
    wrap
    The text wrap
    See Also