igniteui-react-core
Version:
Ignite UI React Core.
64 lines (63 loc) • 1.36 kB
JavaScript
/**
* Event arguments for GetTileImageUri event
*/
export class IgrGetTileImageUriArgs {
get nativeElement() {
return this._implementation.nativeElement;
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
this.mounted = false;
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
/**
* Gets or sets the tile level.
*/
get tileLevel() {
return this.i.tileLevel;
}
set tileLevel(v) {
this.i.tileLevel = +v;
}
/**
* Gets or sets the tile's X position
*/
get tilePositionX() {
return this.i.tilePositionX;
}
set tilePositionX(v) {
this.i.tilePositionX = +v;
}
/**
* Gets or sets the tile's Y position
*/
get tilePositionY() {
return this.i.tilePositionY;
}
set tilePositionY(v) {
this.i.tilePositionY = +v;
}
/**
* Gets or sets the tile's image URI
*/
get tileImageUri() {
return this.i.tileImageUri;
}
set tileImageUri(v) {
this.i.tileImageUri = v;
}
}