Table of Contents

TLineStyle.TLineStyle Constructor

Overloads

TLineStyle.TLineStyle(TFillStyle)

Creates a simple line with most values by default, including default width.

Syntax

Namespace: FlexCel.Core

public TLineStyle(TFillStyle aFill)

Parameters

<-> Parameter Type Description
aFill TFillStyle Fill for the line.

See also

TLineStyle.TLineStyle(TFillStyle, Nullable<Int32>)

Creates a simple line with most values by default.

Syntax

Namespace: FlexCel.Core

public TLineStyle(TFillStyle aFill, Nullable<Int32> aWidth)

Parameters

<-> Parameter Type Description
aFill TFillStyle Fill for the line.
aWidth Nullable<Int32> Width of the line in EMUs (1 pt = 12700 EMUs). If null, width of the theme will be used.

See also

TLineStyle.TLineStyle(TDrawingColor, Nullable<Int32>)

Creates a simple line with a solid color and most values by default.

Syntax

Namespace: FlexCel.Core

public TLineStyle(TDrawingColor aColor, Nullable<Int32> aWidth)

Parameters

<-> Parameter Type Description
aColor TDrawingColor Color for the line.
aWidth Nullable<Int32> Width of the line in EMUs (1 pt = 12700 EMUs). If null, width of the theme will be used.

See also

TLineStyle.TLineStyle(TFillStyle, Nullable<Int32>, Nullable<TPenAlignment>, Nullable<TLineCap>, Nullable<TCompoundLineType>, Nullable<TLineDashing>, Nullable<TLineJoin>, Nullable<Double>, Nullable<TLineArrow>, Nullable<TLineArrow>)

Initializes the line style.

Syntax

Namespace: FlexCel.Core

public TLineStyle(TFillStyle aFill, Nullable<Int32> aWidth, Nullable<TPenAlignment> aPenAlign, Nullable<TLineCap> aLineCap, Nullable<TCompoundLineType> aCompoundLineType, Nullable<TLineDashing> aDashing, Nullable<TLineJoin> aJoin, Nullable<Double> aMiterLim, Nullable<TLineArrow> aHeadArrow, Nullable<TLineArrow> aTailArrow)

Parameters

<-> Parameter Type Description
aFill TFillStyle
aWidth Nullable<Int32>
aPenAlign Nullable<TPenAlignment>
aLineCap Nullable<TLineCap>
aCompoundLineType Nullable<TCompoundLineType>
aDashing Nullable<TLineDashing>
aJoin Nullable<TLineJoin>
aMiterLim Nullable<Double>
aHeadArrow Nullable<TLineArrow>
aTailArrow Nullable<TLineArrow>

See also