Table of Contents

TShapeLine.TShapeLine Constructor

Overloads

TShapeLine.TShapeLine

Creates a black simple line.

Syntax

Namespace: FlexCel.Core

public TShapeLine()

See also

TShapeLine.TShapeLine(Boolean, TLineStyle)

Creates a line with a line style and no theme.

Syntax

Namespace: FlexCel.Core

public TShapeLine(Boolean aHasLine, TLineStyle aLineStyle)

Parameters

<-> Parameter Type Description
aHasLine Boolean True if the shape has a line.
aLineStyle TLineStyle Custom line style. If null, the theme line style will be used.

See also

TShapeLine.TShapeLine(Boolean, TLineStyle, Nullable<TDrawingColor>, TFormattingType)

Creates a line with all the options.

Syntax

Namespace: FlexCel.Core

public TShapeLine(Boolean aHasLine, TLineStyle aLineStyle, Nullable<TDrawingColor> aThemeColor, TFormattingType aThemeStyle)

Parameters

<-> Parameter Type Description
aHasLine Boolean True if the shape has a line.
aLineStyle TLineStyle Custom line style. If null, the theme line style will be used.
aThemeColor Nullable<TDrawingColor> Color to use in a theme line style. Will be used only if aLineStyle is null.
It has the color that will be used instead of the one in the theme. All other line properties come from the theme.
aThemeStyle TFormattingType Theme that will be used for the line. This only affects the line if aLineStyle is null.

See also