Layout Method Enumeration
This enumerated type defines the layout method for the BaseButtonList control and its
derived classes.
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
[SerializableAttribute]
public enum LayoutMethodVB
<SerializableAttribute>
Public Enumeration LayoutMethodC++
[SerializableAttribute]
public enum class LayoutMethodF#
[<SerializableAttribute>]
type LayoutMethodRemarks
In all cases, the BaseButtonList derived classes will display scrollbars as needed if all
items will not fit within their bounds.
Members
| SingleColumn | 0 | A single column of buttons. This is the default. |
| SingleRow | 1 | A single row of buttons. |
| DownThenAcross | 2 | A multi-column list. There will be as many rows as will fit vertically and extra columns are added to handle any overflow. |
| AcrossThenDown | 3 | A multi-column list. There will be as many columns as will fit horizontally and extra rows are added to handle any overflow. |