igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
67 lines (66 loc) • 2.12 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 StyleShapeEventArgsDescription = /*@__PURE__*/ (() => {
class StyleShapeEventArgsDescription extends Description {
constructor() {
super();
this.o = null;
this.p = null;
this.q = null;
this.l = 0;
this.k = 0;
}
get_type() {
return "StyleShapeEventArgs";
}
get type() {
return this.get_type();
}
get itemRef() {
return this.o;
}
set itemRef(a) {
this.o = a;
this.j("ItemRef");
}
get shapeFill() {
return this.p;
}
set shapeFill(a) {
this.p = a;
this.j("ShapeFill");
}
get shapeStroke() {
return this.q;
}
set shapeStroke(a) {
this.q = a;
this.j("ShapeStroke");
}
get shapeStrokeThickness() {
return this.l;
}
set shapeStrokeThickness(a) {
this.l = a;
this.j("ShapeStrokeThickness");
}
get shapeOpacity() {
return this.k;
}
set shapeOpacity(a) {
this.k = a;
this.j("ShapeOpacity");
}
}
StyleShapeEventArgsDescription.$t = markType(StyleShapeEventArgsDescription, 'StyleShapeEventArgsDescription', Description.$);
return StyleShapeEventArgsDescription;
})();