Specifies the Field’s border style.
Namespace:
C1.C1ReportAssembly: C1.C1Report.2 (in C1.C1Report.2.dll)
Syntax
| C# |
|---|
public enum BorderStyleEnum |
| Visual Basic |
|---|
Public Enumeration BorderStyleEnum |
Members
| Member name | Description | |
|---|---|---|
| Transparent | No border. | |
| Solid | Solid border. | |
| Dash | Dashed border. | |
| Dot | Dotted border. | |
| DashDot | Dash-dot border. | |
| DashDotDot | Dash-dot-dot border. |
Remarks
Use the members of this enumeration to set the value
of the BorderStyle property in the Field class.
Examples
The following code sets the field's border style to dotted:
Me.c1r.Fields(0).BorderStyle = C1.C1Report.BorderStyleEnum.Dot |
this.c1r.Fields[0].BorderStyle = C1.C1Report.BorderStyleEnum.Dot; |