Specifies line style of a Border.
[Visual Basic]
Public Enum LineStyle
[C#]public enum LineStyle
Example
Inserts a string surrounded by a border into a document.
[C#]
DocumentBuilder builder = new DocumentBuilder();
builder.Font.Border.Color = System.Drawing.Color.Green;
builder.Font.Border.LineWidth = 2.5;
builder.Font.Border.LineStyle = LineStyle.DashDotStroker;
builder.Write("run of text in a green border");[Visual Basic]
Dim builder As DocumentBuilder = New DocumentBuilder()
builder.Font.Border.Color = System.Drawing.Color.Green
builder.Font.Border.LineWidth = 2.5
builder.Font.Border.LineStyle = LineStyle.DashDotStroker
builder.Write("run of text in a green border")Members
| Member Name | Description | Value |
| None |
| 0 |
| Single |
| 1 |
| Thick |
| 2 |
| Double |
| 3 |
| Hairline |
| 5 |
| Dot |
| 6 |
| DashLargeGap |
| 7 |
| DotDash |
| 8 |
| DotDotDash |
| 9 |
| Triple |
| 10 |
| ThinThickSmallGap |
| 11 |
| ThickThinSmallGap |
| 12 |
| ThinThickThinSmallGap |
| 13 |
| ThinThickMediumGap |
| 14 |
| ThickThinMediumGap |
| 15 |
| ThinThickThinMediumGap |
| 16 |
| ThinThickLargeGap |
| 17 |
| ThickThinLargeGap |
| 18 |
| ThinThickThinLargeGap |
| 19 |
| Wave |
| 20 |
| DoubleWave |
| 21 |
| DashSmallGap |
| 22 |
| DashDotStroker |
| 23 |
| Emboss3D |
| 24 |
| Engrave3D |
| 25 |
| Outset |
| 26 |
| Inset |
| 27 |
<