GridBorderChars - ahatornn/clforms GitHub Wiki
GridBorderChars
ClForms.Common.GridBorderChars
Defines border characters of table
public class GridBorderChars: BorderChars
Inheritance BorderChars -> GridBorderChars
Constructors
| Syntax |
Description |
| GridBorderChars(BorderChars borderChars, char topInner, char rightInner, char bottomInner, char leftInner, char verticalInner, char horizontalInner, char crossInner) |
Initialize a new GridBorderChars instance |
| GridBorderChars(char topLeft, char topMiddle, char topRight, char middleLeft, char middleRight, char bottomLeft, char bottomMiddle, char bottomRight, char topInner, char rightInner, char bottomInner, char leftInner, char verticalInner, char horizontalInner, char crossInner) |
Initialize a new GridBorderChars instance |
Properties
| x |
a |
b |
c |
d |
e |
| 1 |
╔ |
═ |
╤ |
═ |
╗ |
| 2 |
║ |
|
│ |
|
║ |
| 3 |
╟ |
─ |
┼ |
─ |
╢ |
| 4 |
║ |
|
│ |
|
║ |
| 5 |
╚ |
═ |
╧ |
═ |
╝ |
| Name |
Type |
Description |
Example cell |
| BottomInner |
char |
Returns the inner line from bottom |
c5 |
| BottomLeft |
char |
Returns the bottom left corner character |
a5 |
| BottomMiddle |
char |
Returns the bottom middle character |
b5, d5 |
| BottomRight |
char |
Returns the bottom right corner character |
e5 |
| CrossInner |
char |
Returns the cross of inner lines |
c3 |
| HorizontalInner |
char |
Returns the horizontal inner line |
b3, d3 |
| LeftInner |
char |
Returns the inner line from left |
a3 |
| MiddleLeft |
char |
Returns the middle left character |
a2, a4 |
| MiddleRight |
char |
Returns the middle right character |
e2, e4 |
| RightInner |
char |
Returns the inner line from right |
e3 |
| TopInner |
char |
Returns the inner line from top |
c1 |
| TopLeft |
char |
Returns the upper left corner character |
a1 |
| TopMiddle |
char |
Returns the upper middle character |
b1, d1 |
| TopRight |
char |
Returns the upper right corner character |
e1 |
| VerticalInner |
char |
Returns the vertical inner line |
c2, c4 |