Determines whether/how a line should be drawn across the field (as opposed to a box around the field).

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public enum LineSlantEnum
Visual Basic
Public Enumeration LineSlantEnum

Members

Member nameDescription
NoLine Regular field (not a line).
NoSlant Render field as a vertical line (if Height > Width) or as a horizontal line (if Width > Height).
Down Render field as a line between the left-top and right-bottom corners of the field box.
Up Render field as a line between the left-bottom and right-top corners of the field box.

Remarks

Use the members of this enumeration to set the value of the LineSlant property in the Field class.

See Also