igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
93 lines (92 loc) • 2.98 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 UserAnnotationInformationDescription = /*@__PURE__*/ (() => {
class UserAnnotationInformationDescription extends Description {
constructor() {
super();
this.r = null;
this.u = null;
this.s = null;
this.v = null;
this.q = null;
this.t = null;
this.l = 0;
this.m = 0;
}
get_type() {
return "UserAnnotationInformation";
}
get type() {
return this.get_type();
}
get annotationId() {
return this.r;
}
set annotationId(a) {
this.r = a;
this.j("AnnotationId");
}
get label() {
return this.u;
}
set label(a) {
this.u = a;
this.j("Label");
}
get badgeColor() {
return this.s;
}
set badgeColor(a) {
this.s = a;
this.j("BadgeColor");
}
get mainColor() {
return this.v;
}
set mainColor(a) {
this.v = a;
this.j("MainColor");
}
get annotationData() {
return this.q;
}
set annotationData(a) {
this.q = a;
this.j("AnnotationData");
}
get badgeImageUri() {
return this.t;
}
set badgeImageUri(a) {
this.t = a;
this.j("BadgeImageUri");
}
get dialogSuggestedXLocation() {
return this.l;
}
set dialogSuggestedXLocation(a) {
this.l = a;
this.j("DialogSuggestedXLocation");
}
get dialogSuggestedYLocation() {
return this.m;
}
set dialogSuggestedYLocation(a) {
this.m = a;
this.j("DialogSuggestedYLocation");
}
}
UserAnnotationInformationDescription.$t = markType(UserAnnotationInformationDescription, 'UserAnnotationInformationDescription', Description.$);
UserAnnotationInformationDescription.__marshalByValue = true;
UserAnnotationInformationDescription.__marshalByValueAlias = "UserAnnotationInformation";
return UserAnnotationInformationDescription;
})();