igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
77 lines (76 loc) • 2.38 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 { NativeUIContainer } from "./NativeUIContainer";
import { markType } from "./type";
/**
* @hidden
*/
export let NativeUIGrid = /*@__PURE__*/ (() => {
class NativeUIGrid extends NativeUIContainer {
constructor() {
super(...arguments);
this.a0 = null;
}
get_c() {
return 7;
}
get a5() {
return this.az.getRowDefinitionsCount(this.u);
}
get a2() {
return this.az.getColumnDefinitionsCount(this.u);
}
get az() {
return this.b;
}
a7(a, b, c) {
this.az.addRowDefinition(this.u, a, b, c);
}
bd(a, b, c) {
this.az.updateRowDefinition(this.u, a, b, c);
}
a6(a, b, c) {
this.az.addColumnDefinition(this.u, a, b, c);
}
bc(a, b, c) {
this.az.updateColumnDefinition(this.u, a, b, c);
}
bb(a, b) {
this.az.setRow(this.u, a, b);
}
ba(a, b) {
this.az.setColumn(this.u, a, b);
}
a4(a) {
return this.az.getRow(this.u, a);
}
a3(a) {
return this.az.getColumn(this.u, a);
}
a9(a) {
this.az.removeRowDefinition(this.u, a);
}
a8(a) {
this.az.removeColumnDefinition(this.u, a);
}
get a1() {
return this.a0;
}
set a1(a) {
let b = this.a0;
this.a0 = a;
if (this.a0 != null) {
this.x(1, this.a0);
}
else {
this.ad(1, b);
}
}
}
NativeUIGrid.$t = markType(NativeUIGrid, 'NativeUIGrid', NativeUIContainer.$);
return NativeUIGrid;
})();