Click or drag to resize

IntegerAndComboBoxController Constructor

Initializes a new instance of the IntegerAndComboBoxController class.

Namespace: Altaxo.Gui.Common
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public IntegerAndComboBoxController(
	string integerLabel,
	int intMin,
	int intMax,
	int intVal,
	string comboBoxLabel,
	SelectableListNodeList items,
	int defaultItem
)

Parameters

integerLabel  String
The label text for the integer editor.
intMin  Int32
The minimum allowed integer value.
intMax  Int32
The maximum allowed integer value.
intVal  Int32
The initial integer value.
comboBoxLabel  String
The label text for the combo box.
items  SelectableListNodeList
The available combo-box items.
defaultItem  Int32
The zero-based index of the initially selected item.
See Also