LayoutMethod Enumeration
This enumerated type defines the layout method for the
BaseButtonList control and its
derived classes.
Namespace: EWSoftware.ListControlsAssembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
[SerializableAttribute]
public enum LayoutMethod
<SerializableAttribute>
Public Enumeration LayoutMethod
[SerializableAttribute]
public enum class LayoutMethod
[<SerializableAttribute>]
type LayoutMethod
In all cases, the BaseButtonList derived classes will display scrollbars as needed if all
items will not fit within their bounds.
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.
|