igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
277 lines (276 loc) • 7.47 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 ToolActionInfoDescription = /*@__PURE__*/ (() => {
class ToolActionInfoDescription extends Description {
constructor() {
super();
this.a5 = null;
this.ay = null;
this.aw = null;
this.ax = null;
this.ae = 0;
this.af = 0;
this.ad = 0;
this.ag = 0;
this.a8 = null;
this.a6 = null;
this.a3 = null;
this.a1 = null;
this.z = 0;
this.aa = 0;
this.ab = 0;
this.y = 0;
this.ac = 0;
this.w = 0;
this.a2 = null;
this.a4 = null;
this.x = 0;
this.at = 0;
this.v = 0;
this.q = false;
this.r = false;
this.a7 = null;
this.a0 = null;
this.p = false;
this.az = null;
this.k = null;
this.l = null;
}
get_type() {
return "ToolActionInfo";
}
get type() {
return this.get_type();
}
get parentId() {
return this.a5;
}
set parentId(a) {
this.a5 = a;
this.j("ParentId");
}
get commandId() {
return this.ay;
}
set commandId(a) {
this.ay = a;
this.j("CommandId");
}
get commandArgument() {
return this.aw;
}
set commandArgument(a) {
this.aw = a;
this.j("CommandArgument");
}
get commandArgumentValueRef() {
return this.ax;
}
set commandArgumentValueRef(a) {
this.ax = a;
this.j("CommandArgumentValueRef");
}
get paddingLeft() {
return this.ae;
}
set paddingLeft(a) {
this.ae = a;
this.j("PaddingLeft");
}
get paddingRight() {
return this.af;
}
set paddingRight(a) {
this.af = a;
this.j("PaddingRight");
}
get paddingBottom() {
return this.ad;
}
set paddingBottom(a) {
this.ad = a;
this.j("PaddingBottom");
}
get paddingTop() {
return this.ag;
}
set paddingTop(a) {
this.ag = a;
this.j("PaddingTop");
}
get title() {
return this.a8;
}
set title(a) {
this.a8 = a;
this.j("Title");
}
get subtitle() {
return this.a6;
}
set subtitle(a) {
this.a6 = a;
this.j("Subtitle");
}
get iconName() {
return this.a3;
}
set iconName(a) {
this.a3 = a;
this.j("IconName");
}
get iconCollectionName() {
return this.a1;
}
set iconCollectionName(a) {
this.a1 = a;
this.j("IconCollectionName");
}
get iconViewBoxLeft() {
return this.z;
}
set iconViewBoxLeft(a) {
this.z = a;
this.j("IconViewBoxLeft");
}
get iconViewBoxTop() {
return this.aa;
}
set iconViewBoxTop(a) {
this.aa = a;
this.j("IconViewBoxTop");
}
get iconViewBoxWidth() {
return this.ab;
}
set iconViewBoxWidth(a) {
this.ab = a;
this.j("IconViewBoxWidth");
}
get iconViewBoxHeight() {
return this.y;
}
set iconViewBoxHeight(a) {
this.y = a;
this.j("IconViewBoxHeight");
}
get iconWidth() {
return this.ac;
}
set iconWidth(a) {
this.ac = a;
this.j("IconWidth");
}
get iconHeight() {
return this.w;
}
set iconHeight(a) {
this.w = a;
this.j("IconHeight");
}
get iconFill() {
return this.a2;
}
set iconFill(a) {
this.a2 = a;
this.j("IconFill");
}
get iconStroke() {
return this.a4;
}
set iconStroke(a) {
this.a4 = a;
this.j("IconStroke");
}
get iconStrokeWidth() {
return this.x;
}
set iconStrokeWidth(a) {
this.x = a;
this.j("IconStrokeWidth");
}
get subPanelRowHeight() {
return this.at;
}
set subPanelRowHeight(a) {
this.at = a;
this.j("SubPanelRowHeight");
}
get height() {
return this.v;
}
set height(a) {
this.v = a;
this.j("Height");
}
get isDisabled() {
return this.q;
}
set isDisabled(a) {
this.q = a;
this.j("IsDisabled");
}
get isHighlighted() {
return this.r;
}
set isHighlighted(a) {
this.r = a;
this.j("IsHighlighted");
}
get textColor() {
return this.a7;
}
set textColor(a) {
this.a7 = a;
this.j("TextColor");
}
get disabledTextColor() {
return this.a0;
}
set disabledTextColor(a) {
this.a0 = a;
this.j("DisabledTextColor");
}
get closeOnExecute() {
return this.p;
}
set closeOnExecute(a) {
this.p = a;
this.j("CloseOnExecute");
}
get density() {
return this.az;
}
set density(a) {
this.az = a;
this.j("Density");
}
get actions() {
return this.k;
}
set actions(a) {
this.k = a;
this.j("Actions");
}
get contextBindings() {
return this.l;
}
set contextBindings(a) {
this.l = a;
this.j("ContextBindings");
}
}
ToolActionInfoDescription.$t = markType(ToolActionInfoDescription, 'ToolActionInfoDescription', Description.$);
ToolActionInfoDescription.__marshalByValue = true;
ToolActionInfoDescription.__marshalByValueAlias = "ToolActionInfo";
return ToolActionInfoDescription;
})();