igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
59 lines (58 loc) • 1.9 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let DataGridCellEventArgsDescription = /*@__PURE__*/ (() => {
class DataGridCellEventArgsDescription extends Description {
constructor() {
super();
this.k = null;
this.m = null;
this.q = null;
this.o = false;
}
get_type() {
return "DataGridCellEventArgs";
}
get type() {
return this.get_type();
}
get cellInfo() {
return this.k;
}
set cellInfo(a) {
this.k = a;
this.j("CellInfo");
}
get grid() {
return this.m;
}
set grid(a) {
this.m = a;
this.j("Grid");
}
get button() {
return this.q;
}
set button(a) {
this.q = a;
this.j("Button");
}
get isDoubleClick() {
return this.o;
}
set isDoubleClick(a) {
this.o = a;
this.j("IsDoubleClick");
}
}
DataGridCellEventArgsDescription.$t = markType(DataGridCellEventArgsDescription, 'DataGridCellEventArgsDescription', Description.$);
return DataGridCellEventArgsDescription;
})();