Enumeration for the type of grid lines to show around each column/row in a
Grid
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax [FlagsAttribute]
public enum GridLines
<FlagsAttribute>
Public Enumeration GridLines
[<FlagsAttribute>]
type GridLines
Members
| Member name | Value | Description |
---|
| None | 0 |
No grid lines shown
|
| Horizontal | 1 |
A horizontal line is shown between each row
|
| Vertical | 2 |
A vertical line is shown between each column
|
| Both | 3 |
Shows both vertical and horizontal lines between each column/row
|
See Also