projects/wms-framework/src/lib/models/controls/radcontrolstubs.ts
Properties |
|
Methods |
Protected _internalArray |
Type : T[]
|
Default value : []
|
Inherited from
SimpleList
|
Defined in
SimpleList:276
|
Protected Static interfacesInitialized |
Default value : false
|
Inherited from
SimpleList
|
Defined in
SimpleList:274
|
add | ||||||
add(value: T)
|
||||||
Inherited from
SimpleList
|
||||||
Defined in
SimpleList:389
|
||||||
Adds an element to the list
Parameters :
Returns :
void
|
addRange | ||||||
addRange(range: Iterable<T>)
|
||||||
Inherited from
SimpleList
|
||||||
Defined in
SimpleList:452
|
||||||
Adds elements of an iterable to the list
Parameters :
Returns :
void
|
clear |
clear()
|
Inherited from
SimpleList
|
Defined in
SimpleList:398
|
Clears the list
Returns :
void
|
contains | ||||||
contains(value: T)
|
||||||
Inherited from
SimpleList
|
||||||
Defined in
SimpleList:410
|
||||||
Check if a value is contained in the list
Parameters :
Returns :
boolean
|
copyTo | |||||||||
copyTo(target: T[], index: number)
|
|||||||||
Inherited from
SimpleList
|
|||||||||
Defined in
SimpleList:513
|
|||||||||
Copies the list to a target array
Parameters :
Returns :
void
|
forEach | ||||||
forEach(action: (e: T) => void)
|
||||||
Inherited from
SimpleList
|
||||||
Defined in
SimpleList:439
|
||||||
Performs an action on each element of the list
Parameters :
Returns :
void
|
getItem | ||||||
getItem(index: number)
|
||||||
Inherited from
SimpleList
|
||||||
Defined in
SimpleList:323
|
||||||
Parameters :
Returns :
T
|
indexOf | ||||||
indexOf(value: T)
|
||||||
Inherited from
SimpleList
|
||||||
Defined in
SimpleList:343
|
||||||
Index of value in list
Parameters :
Returns :
any
|
Protected Static initializeSupportedInterfaces |
initializeSupportedInterfaces()
|
Inherited from
SimpleList
|
Defined in
SimpleList:278
|
Returns :
void
|
insert | |||||||||
insert(index: number, value: T)
|
|||||||||
Inherited from
SimpleList
|
|||||||||
Defined in
SimpleList:355
|
|||||||||
Inserts element in index
Parameters :
Returns :
void
|
insertRange | |||||||||
insertRange(position: number, range: Iterable<T>)
|
|||||||||
Inherited from
SimpleList
|
|||||||||
Defined in
SimpleList:466
|
|||||||||
Inserts elements of an interable to the list in a position
Parameters :
Returns :
void
|
remove | ||||||
remove(value: T)
|
||||||
Inherited from
SimpleList
|
||||||
Defined in
SimpleList:422
|
||||||
Removes a value from the list
Parameters :
Returns :
boolean
|
Public removeAll | ||||||
removeAll(predicate: (e: T) => void)
|
||||||
Inherited from
SimpleList
|
||||||
Defined in
SimpleList:527
|
||||||
Removes all elements from the collection by a predicate
Parameters :
Returns :
number
|
removeAt | ||||||
removeAt(index: number)
|
||||||
Inherited from
SimpleList
|
||||||
Defined in
SimpleList:366
|
||||||
Removes element at index
Parameters :
Returns :
void
|
setItem | |||||||||
setItem(index: number, value: T)
|
|||||||||
Inherited from
SimpleList
|
|||||||||
Defined in
SimpleList:329
|
|||||||||
Parameters :
Returns :
void
|
sort |
sort()
|
Inherited from
SimpleList
|
Defined in
SimpleList:479
|
Sorts the list
Returns :
any
|
Public toArray |
toArray()
|
Inherited from
SimpleList
|
Defined in
SimpleList:545
|
Converts the list to an array
Returns :
{}
|
()
|
Inherited from
SimpleList
|
Defined in
SimpleList:549
|
Returns :
Iterator<T, any, undefined>
|
import { Control } from '../../basecomponentmodel/Control';
import { FrameworkElement } from '../../basecomponentmodel/FrameworkElement';
import { INotifyPropertyChanged } from '../../basecomponentmodel/INotifyPropertyChanged';
import { SimpleList } from '../../baseframework';
import { SubscriptionEvent } from '../../utils';
import { ButtonBaseModel } from './ButtonBaseModel';
import { RadioButtonModel } from './RadioButtonModel';
import { ToggleButtonModel } from './ToggleButtonModel';
export class RdLinearSparklineMo extends Control {}
export class RdTimeBar extends Control {}
export class RdBusyIndicator extends Control {}
export class RdGridView extends Control {}
export class SmThumb extends FrameworkElement {
DragStarted: SubscriptionEvent<any> = new SubscriptionEvent();
}
export class SmRdSlider extends Control {
public Value: any = null;
public Maximum: any = null;
public Minimum: any = null;
ValueChanged: SubscriptionEvent<any> = new SubscriptionEvent();
}
export class SmRdButton extends ButtonBaseModel {}
export class SmSeriesMapping {
public ChartArea: SmRdChartArea;
}
export class SmRdChart extends Control {
public SeriesMappings: SmSeriesMapping[] = [];
}
export class SmRdAxis {
AxisLabelsVisibility: boolean = false;
}
export class SmRdChartArea extends Control {
public AxisX: SmRdAxis;
}
export class SmRdToggleButton extends ToggleButtonModel {}
export class SmRdRadioButton extends RadioButtonModel {}
export class SmRdViewModelBase implements INotifyPropertyChanged {
PropertyChanged: SubscriptionEvent<
(o: any, args: { PropertyName: string }) => void
> = new SubscriptionEvent();
protected OnPropertyChanged(propertyName: string): void {
this.PropertyChanged.fire([this, { PropertyName: propertyName }]);
}
}
export class SmRdSelectionRange<T> {
constructor(public Start: T, public End: T) {}
}
export class SmRdVirtualQueryableCollectionView extends SimpleList<unknown> {}