Interface IUiSelectableParameters
Interface for UI selectable component parameters.
Inherited Members
Namespace: Serenity.Ui.Application.Interfaces.Components
Assembly: Serenity.Ui.Application.dll
Syntax
public interface IUiSelectableParameters : IUiInteractableParameters, IComponentParameters, IFoundationSettings
Properties
IsTranslatingValue
Gets or sets whether the value is being translated.
Declaration
bool IsTranslatingValue { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | True if the value is being translated; otherwise, false. |
SelectableValues
Gets or sets the array of selectable values.
Declaration
ConfigurationEntry[] SelectableValues { get; set; }
Property Value
| Type | Description |
|---|---|
| ConfigurationEntry[] | The array of selectable values. |
SelectedIndex
Gets or sets the index of the currently selected value.
Declaration
int SelectedIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| int | The index of the currently selected value. |
ValueType
Gets or sets the type of value used in the selectable component.
Declaration
UiComponentValueType ValueType { get; set; }
Property Value
| Type | Description |
|---|---|
| UiComponentValueType | The type of value used in the selectable component. |