DataDefinition
[ Schnittstelle ]
export interface DataDefinition {
value: any;
text: string;
source?: string;
width?: number;
height?: number;
minValue?: number;
maxValue?: number;
decimalPlaces?: number;
step?: number;
unit?: string;
resetToLastValidValue?: boolean;
}Eigenschaften
Name | Typ | Beschreibung |
|---|---|---|
value | Wert | |
text | Anzeigetext bei einer 'ComboBox', alternativer Anzeigetext bei einem 'Image'. | |
source [optional] | Webadresse eines Bildes (nur bei 'Image') | |
width [optional] | Pixelbreite des Bildes (nur bei 'Image') | |
height [optional] | Pixelhöhe des Bildes (nur bei 'Image') | |
minValue [optional] | Minimalwert (nur bei 'NumericInput', 'SpinboxInput', 'DateTimeInput' und 'TimespanInput') | |
maxValue [optional] | Maximalwert (nur bei 'NumericInput', 'SpinboxInput', 'DateTimeInput' und 'TimespanInput') | |
decimalDigits [optional] | Nachkommastellen (nur bei 'NumericInput' und 'SpinboxInput') | |
step [optional] | Schrittweite (nur bei 'NumericInput' und 'SpinboxInput') | |
unit [optional] | Einheit (nur bei 'NumericInput' und 'SpinboxInput') | |
resetToLastValidValue [optional] | Zurücksetzen auf valide Werte (nur bei 'NumericInput', 'SpinboxInput', 'DateTimeInput' und 'TimespanInput'). |
![]() | Verfügbar ab Version 1.8 |
