igniteui-angular-core 13.2.0-beta.0 → 13.2.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular-core.umd.js +1063 -11
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
- package/esm2015/lib/FontDefaults.js +7 -7
- package/esm2015/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
- package/esm2015/lib/WebExpansionPanelComponentEventArgsDescription.js +34 -0
- package/esm2015/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
- package/esm2015/lib/WebExpansionPanelDescription.js +82 -0
- package/esm2015/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
- package/esm2015/lib/WebExpansionPanelDescriptionMetadata_combined.js +77 -0
- package/esm2015/lib/WebExpansionPanelDescriptionModule.js +20 -0
- package/esm2015/lib/WebMaskInputDescription.js +71 -0
- package/esm2015/lib/WebMaskInputDescriptionMetadata.js +47 -0
- package/esm2015/lib/WebMaskInputDescriptionModule.js +22 -0
- package/esm2015/lib/WebTreeDescription.js +106 -0
- package/esm2015/lib/WebTreeDescriptionMetadata.js +54 -0
- package/esm2015/lib/WebTreeDescriptionModule.js +26 -0
- package/esm2015/lib/WebTreeItemComponentEventArgsDescription.js +34 -0
- package/esm2015/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +40 -0
- package/esm2015/lib/WebTreeItemDescription.js +106 -0
- package/esm2015/lib/WebTreeItemDescriptionMetadata.js +48 -0
- package/esm2015/lib/WebTreeItemDescriptionModule.js +20 -0
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +34 -0
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +38 -0
- package/esm2015/lib/igx-tooltip-container-component.js +3 -3
- package/esm2015/public_api.js +18 -0
- package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
- package/esm5/lib/FontDefaults.js +7 -7
- package/esm5/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
- package/esm5/lib/WebExpansionPanelComponentEventArgsDescription.js +44 -0
- package/esm5/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
- package/esm5/lib/WebExpansionPanelDescription.js +116 -0
- package/esm5/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
- package/esm5/lib/WebExpansionPanelDescriptionMetadata_combined.js +84 -0
- package/esm5/lib/WebExpansionPanelDescriptionModule.js +24 -0
- package/esm5/lib/WebMaskInputDescription.js +97 -0
- package/esm5/lib/WebMaskInputDescriptionMetadata.js +51 -0
- package/esm5/lib/WebMaskInputDescriptionModule.js +26 -0
- package/esm5/lib/WebTreeDescription.js +152 -0
- package/esm5/lib/WebTreeDescriptionMetadata.js +58 -0
- package/esm5/lib/WebTreeDescriptionModule.js +30 -0
- package/esm5/lib/WebTreeItemComponentEventArgsDescription.js +44 -0
- package/esm5/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +44 -0
- package/esm5/lib/WebTreeItemDescription.js +152 -0
- package/esm5/lib/WebTreeItemDescriptionMetadata.js +52 -0
- package/esm5/lib/WebTreeItemDescriptionModule.js +24 -0
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +44 -0
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +42 -0
- package/esm5/lib/igx-tooltip-container-component.js +2 -2
- package/esm5/public_api.js +18 -0
- package/fesm2015/igniteui-angular-core.js +857 -13
- package/fesm5/igniteui-angular-core.js +1046 -12
- package/lib/WebDropdownGroupDescription.d.ts +2 -2
- package/lib/WebExpansionPanelComponentEventArgsDescription.d.ts +15 -0
- package/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.d.ts +1 -0
- package/lib/WebExpansionPanelDescription.d.ts +32 -0
- package/lib/WebExpansionPanelDescriptionMetadata.d.ts +1 -0
- package/lib/WebExpansionPanelDescriptionMetadata_combined.d.ts +23 -0
- package/lib/WebExpansionPanelDescriptionModule.d.ts +9 -0
- package/lib/WebMaskInputDescription.d.ts +28 -0
- package/lib/WebMaskInputDescriptionMetadata.d.ts +13 -0
- package/lib/WebMaskInputDescriptionModule.d.ts +9 -0
- package/lib/WebTreeDescription.d.ts +41 -0
- package/lib/WebTreeDescriptionMetadata.d.ts +13 -0
- package/lib/WebTreeDescriptionModule.d.ts +9 -0
- package/lib/WebTreeItemComponentEventArgsDescription.d.ts +15 -0
- package/lib/WebTreeItemComponentEventArgsDescriptionMetadata.d.ts +13 -0
- package/lib/WebTreeItemDescription.d.ts +41 -0
- package/lib/WebTreeItemDescriptionMetadata.d.ts +13 -0
- package/lib/WebTreeItemDescriptionModule.d.ts +9 -0
- package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +15 -0
- package/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.d.ts +13 -0
- package/package.json +1 -1
- package/public_api.d.ts +18 -0
|
@@ -31430,13 +31430,13 @@ let FontDefaults = /*@__PURE__*/ (() => {
|
|
|
31430
31430
|
}
|
|
31431
31431
|
FontDefaults.$t = markType(FontDefaults, 'FontDefaults');
|
|
31432
31432
|
FontDefaults.legendLabelsBrush = BrushUtil.g(255, 37, 37, 37);
|
|
31433
|
-
FontDefaults.legendLabelsFontSizeConst =
|
|
31434
|
-
FontDefaults.legendLabelsFontSize = DeviceUtils.f(
|
|
31433
|
+
FontDefaults.legendLabelsFontSizeConst = 13;
|
|
31434
|
+
FontDefaults.legendLabelsFontSize = DeviceUtils.f(13);
|
|
31435
31435
|
FontDefaults.legendLabelsFontConst = "Verdana";
|
|
31436
31436
|
FontDefaults.legendLabelsFontFamily = FontDefaults.aq("Verdana");
|
|
31437
31437
|
FontDefaults.dataLegendFontBrush = BrushUtil.g(255, 37, 37, 37);
|
|
31438
|
-
FontDefaults.dataLegendFontSizeConst =
|
|
31439
|
-
FontDefaults.dataLegendFontSize = DeviceUtils.f(
|
|
31438
|
+
FontDefaults.dataLegendFontSizeConst = 13;
|
|
31439
|
+
FontDefaults.dataLegendFontSize = DeviceUtils.f(13);
|
|
31440
31440
|
FontDefaults.dataLegendFontFamilyConst = "Verdana";
|
|
31441
31441
|
FontDefaults.dataLegendFontFamily = FontDefaults.aq("Verdana");
|
|
31442
31442
|
FontDefaults.dataLegendFontWeight = "400";
|
|
@@ -31445,8 +31445,8 @@ let FontDefaults = /*@__PURE__*/ (() => {
|
|
|
31445
31445
|
FontDefaults.dataLegendFontVariant = "Normal";
|
|
31446
31446
|
FontDefaults.dataLegendHeaderFontWeight = "600";
|
|
31447
31447
|
FontDefaults.chartAxisLabelBrush = BrushUtil.g(255, 78, 78, 78);
|
|
31448
|
-
FontDefaults.chartFontSizeConst =
|
|
31449
|
-
FontDefaults.chartFontSize = DeviceUtils.f(
|
|
31448
|
+
FontDefaults.chartFontSizeConst = 13;
|
|
31449
|
+
FontDefaults.chartFontSize = DeviceUtils.f(13);
|
|
31450
31450
|
FontDefaults.chartFontNameConst = "Verdana";
|
|
31451
31451
|
FontDefaults.chartFontFamily = FontDefaults.aq("Verdana");
|
|
31452
31452
|
FontDefaults.chartFontWeight = "400";
|
|
@@ -31462,7 +31462,7 @@ let FontDefaults = /*@__PURE__*/ (() => {
|
|
|
31462
31462
|
FontDefaults.chartSubtitleNameConst = "Verdana";
|
|
31463
31463
|
FontDefaults.chartSubtitleFontWeight = "600";
|
|
31464
31464
|
FontDefaults.tooltipLabelsBrush = BrushUtil.g(255, 78, 78, 78);
|
|
31465
|
-
FontDefaults.tooltipLabelsFontSizeConst =
|
|
31465
|
+
FontDefaults.tooltipLabelsFontSizeConst = 13;
|
|
31466
31466
|
FontDefaults.tooltipLabelsFontSize = DeviceUtils.f(FontDefaults.tooltipLabelsFontSizeConst);
|
|
31467
31467
|
FontDefaults.tooltipFontNameConst = "Verdana";
|
|
31468
31468
|
FontDefaults.tooltipLabelsFontFamily = FontDefaults.aq("Verdana");
|
|
@@ -37964,7 +37964,7 @@ let IgxTooltipContainerComponent = /*@__PURE__*/ (() => {
|
|
|
37964
37964
|
</ng-template>
|
|
37965
37965
|
<ng-container *ngTemplateOutlet="containerTemplate ? containerTemplate : defaultContainer; context: context">
|
|
37966
37966
|
</ng-container>
|
|
37967
|
-
`, isInline: true, styles: ["\n .ig-tooltip-container-background {\n padding: 5px; \n padding: var(--tooltip-container-padding, 5px);\n background-color: white; \n background-color: var(--tooltip-container-background-color, white);\n border-style: solid; \n border-style: var(--tooltip-container-border-style, solid);\n border-width: 1px; \n border-width: var(--tooltip-container-border-width, 1px);\n color: rgba(34,34,34,0.8);\n color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));\n font:
|
|
37967
|
+
`, isInline: true, styles: ["\n .ig-tooltip-container-background {\n padding: 5px; \n padding: var(--tooltip-container-padding, 5px);\n background-color: white; \n background-color: var(--tooltip-container-background-color, white);\n border-style: solid; \n border-style: var(--tooltip-container-border-style, solid);\n border-width: 1px; \n border-width: var(--tooltip-container-border-width, 1px);\n color: rgba(34,34,34,0.8);\n color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));\n font: 13px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 13px \"Titillium Web\", Verdana, Arial, sans-serif);\n pointer-events: none;\n white-space: nowrap;\n }\n"], components: [{ type: IgxTemplateContentComponent, selector: "igx-template-content", inputs: ["template", "context"] }], directives: [{ type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: ChangeDetectionStrategy.OnPush });
|
|
37968
37968
|
return IgxTooltipContainerComponent;
|
|
37969
37969
|
})();
|
|
37970
37970
|
ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.14", ngImport: i0, type: IgxTooltipContainerComponent, decorators: [{
|
|
@@ -37995,8 +37995,8 @@ let IgxTooltipContainerComponent = /*@__PURE__*/ (() => {
|
|
|
37995
37995
|
border-width: var(--tooltip-container-border-width, 1px);
|
|
37996
37996
|
color: rgba(34,34,34,0.8);
|
|
37997
37997
|
color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));
|
|
37998
|
-
font:
|
|
37999
|
-
font: var(--tooltip-container-font,
|
|
37998
|
+
font: 13px "Titillium Web", Verdana, Arial, sans-serif;
|
|
37999
|
+
font: var(--tooltip-container-font, 13px "Titillium Web", Verdana, Arial, sans-serif);
|
|
38000
38000
|
pointer-events: none;
|
|
38001
38001
|
white-space: nowrap;
|
|
38002
38002
|
}
|
|
@@ -60664,8 +60664,9 @@ let DotNetCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
|
|
|
60664
60664
|
e = " StateHasChanged();";
|
|
60665
60665
|
}
|
|
60666
60666
|
else {
|
|
60667
|
+
e = " OnPropertyChanged(\"" + this.v(a, false) + "\");";
|
|
60667
60668
|
}
|
|
60668
|
-
if (c.isAsync) {
|
|
60669
|
+
if (c != null && c.isAsync) {
|
|
60669
60670
|
d = this.v(a, false) + ".Fetch().ContinueWith((t) => {" + this.ao(a) + " = t.Result; " + e + " });";
|
|
60670
60671
|
}
|
|
60671
60672
|
this.g.k("private " + this.v(a, false) + " " + this.ao(a) + " = null;");
|
|
@@ -141983,7 +141984,7 @@ let WebDropdownGroupDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
|
141983
141984
|
}
|
|
141984
141985
|
static c(a) {
|
|
141985
141986
|
a.item("__qualifiedNameTS", "String:DropdownGroup");
|
|
141986
|
-
a.item("Items", "
|
|
141987
|
+
a.item("Items", "Array:WebDropdownItemDescription:DropdownItem");
|
|
141987
141988
|
a.item("Size", "ExportedType:string:DropdownGroupSize");
|
|
141988
141989
|
a.item("Size@names", "Small;Medium;Large");
|
|
141989
141990
|
}
|
|
@@ -142136,6 +142137,227 @@ let WebDropdownDescriptionModule = /*@__PURE__*/ (() => {
|
|
|
142136
142137
|
return WebDropdownDescriptionModule;
|
|
142137
142138
|
})();
|
|
142138
142139
|
|
|
142140
|
+
/*
|
|
142141
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
142142
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
142143
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
142144
|
+
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.
|
|
142145
|
+
*/
|
|
142146
|
+
/**
|
|
142147
|
+
* @hidden
|
|
142148
|
+
*/
|
|
142149
|
+
let WebExpansionPanelDescription = /*@__PURE__*/ (() => {
|
|
142150
|
+
class WebExpansionPanelDescription extends Description {
|
|
142151
|
+
constructor() {
|
|
142152
|
+
super();
|
|
142153
|
+
this.g = false;
|
|
142154
|
+
this.f = false;
|
|
142155
|
+
this.l = null;
|
|
142156
|
+
this.n = null;
|
|
142157
|
+
this.m = null;
|
|
142158
|
+
this.k = null;
|
|
142159
|
+
this.j = null;
|
|
142160
|
+
}
|
|
142161
|
+
get_type() {
|
|
142162
|
+
return "WebExpansionPanel";
|
|
142163
|
+
}
|
|
142164
|
+
get type() {
|
|
142165
|
+
return this.get_type();
|
|
142166
|
+
}
|
|
142167
|
+
get open() {
|
|
142168
|
+
return this.g;
|
|
142169
|
+
}
|
|
142170
|
+
set open(a) {
|
|
142171
|
+
this.g = a;
|
|
142172
|
+
this.e("Open");
|
|
142173
|
+
}
|
|
142174
|
+
get disabled() {
|
|
142175
|
+
return this.f;
|
|
142176
|
+
}
|
|
142177
|
+
set disabled(a) {
|
|
142178
|
+
this.f = a;
|
|
142179
|
+
this.e("Disabled");
|
|
142180
|
+
}
|
|
142181
|
+
get indicatorPosition() {
|
|
142182
|
+
return this.l;
|
|
142183
|
+
}
|
|
142184
|
+
set indicatorPosition(a) {
|
|
142185
|
+
this.l = a;
|
|
142186
|
+
this.e("IndicatorPosition");
|
|
142187
|
+
}
|
|
142188
|
+
get openingRef() {
|
|
142189
|
+
return this.n;
|
|
142190
|
+
}
|
|
142191
|
+
set openingRef(a) {
|
|
142192
|
+
this.n = a;
|
|
142193
|
+
this.e("OpeningRef");
|
|
142194
|
+
}
|
|
142195
|
+
get openedRef() {
|
|
142196
|
+
return this.m;
|
|
142197
|
+
}
|
|
142198
|
+
set openedRef(a) {
|
|
142199
|
+
this.m = a;
|
|
142200
|
+
this.e("OpenedRef");
|
|
142201
|
+
}
|
|
142202
|
+
get closingRef() {
|
|
142203
|
+
return this.k;
|
|
142204
|
+
}
|
|
142205
|
+
set closingRef(a) {
|
|
142206
|
+
this.k = a;
|
|
142207
|
+
this.e("ClosingRef");
|
|
142208
|
+
}
|
|
142209
|
+
get closedRef() {
|
|
142210
|
+
return this.j;
|
|
142211
|
+
}
|
|
142212
|
+
set closedRef(a) {
|
|
142213
|
+
this.j = a;
|
|
142214
|
+
this.e("ClosedRef");
|
|
142215
|
+
}
|
|
142216
|
+
}
|
|
142217
|
+
WebExpansionPanelDescription.$t = markType(WebExpansionPanelDescription, 'WebExpansionPanelDescription', Description.$);
|
|
142218
|
+
return WebExpansionPanelDescription;
|
|
142219
|
+
})();
|
|
142220
|
+
|
|
142221
|
+
/*
|
|
142222
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
142223
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
142224
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
142225
|
+
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.
|
|
142226
|
+
*/
|
|
142227
|
+
/**
|
|
142228
|
+
* @hidden
|
|
142229
|
+
*/
|
|
142230
|
+
let WebExpansionPanelComponentEventArgsDescription = /*@__PURE__*/ (() => {
|
|
142231
|
+
class WebExpansionPanelComponentEventArgsDescription extends Description {
|
|
142232
|
+
constructor() {
|
|
142233
|
+
super();
|
|
142234
|
+
this.f = null;
|
|
142235
|
+
}
|
|
142236
|
+
get_type() {
|
|
142237
|
+
return "WebExpansionPanelComponentEventArgs";
|
|
142238
|
+
}
|
|
142239
|
+
get type() {
|
|
142240
|
+
return this.get_type();
|
|
142241
|
+
}
|
|
142242
|
+
get detail() {
|
|
142243
|
+
return this.f;
|
|
142244
|
+
}
|
|
142245
|
+
set detail(a) {
|
|
142246
|
+
this.f = a;
|
|
142247
|
+
this.e("Detail");
|
|
142248
|
+
}
|
|
142249
|
+
}
|
|
142250
|
+
WebExpansionPanelComponentEventArgsDescription.$t = markType(WebExpansionPanelComponentEventArgsDescription, 'WebExpansionPanelComponentEventArgsDescription', Description.$);
|
|
142251
|
+
return WebExpansionPanelComponentEventArgsDescription;
|
|
142252
|
+
})();
|
|
142253
|
+
|
|
142254
|
+
/*
|
|
142255
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
142256
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
142257
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
142258
|
+
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.
|
|
142259
|
+
*/
|
|
142260
|
+
/**
|
|
142261
|
+
* @hidden
|
|
142262
|
+
*/
|
|
142263
|
+
let WebExpansionPanelDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
142264
|
+
class WebExpansionPanelDescriptionMetadata extends Base {
|
|
142265
|
+
static b(a) {
|
|
142266
|
+
if (WebExpansionPanelDescriptionMetadata.a == null) {
|
|
142267
|
+
WebExpansionPanelDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
142268
|
+
WebExpansionPanelDescriptionMetadata.c(WebExpansionPanelDescriptionMetadata.a);
|
|
142269
|
+
}
|
|
142270
|
+
if (a.g(WebExpansionPanelDescriptionMetadata.a)) {
|
|
142271
|
+
return;
|
|
142272
|
+
}
|
|
142273
|
+
a.s(WebExpansionPanelDescriptionMetadata.a);
|
|
142274
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.d(a);
|
|
142275
|
+
}
|
|
142276
|
+
static c(a) {
|
|
142277
|
+
a.item("__qualifiedNameTS", "String:ExpansionPanel");
|
|
142278
|
+
a.item("Open", "Boolean");
|
|
142279
|
+
a.item("Disabled", "Boolean");
|
|
142280
|
+
a.item("IndicatorPosition", "ExportedType:string:ExpansionPanelIndicatorPosition");
|
|
142281
|
+
a.item("IndicatorPosition@names", "Start;End;None");
|
|
142282
|
+
a.item("OpeningRef", "EventRef::opening");
|
|
142283
|
+
a.item("OpenedRef", "EventRef::opened");
|
|
142284
|
+
a.item("ClosingRef", "EventRef::closing");
|
|
142285
|
+
a.item("ClosedRef", "EventRef::closed");
|
|
142286
|
+
}
|
|
142287
|
+
static d(a) {
|
|
142288
|
+
WebExpansionPanelDescriptionMetadata.b(a);
|
|
142289
|
+
a.u("WebExpansionPanel", () => new WebExpansionPanelDescription());
|
|
142290
|
+
a.t("WebExpansionPanel", WebExpansionPanelDescriptionMetadata.a);
|
|
142291
|
+
}
|
|
142292
|
+
}
|
|
142293
|
+
WebExpansionPanelDescriptionMetadata.$t = markType(WebExpansionPanelDescriptionMetadata, 'WebExpansionPanelDescriptionMetadata');
|
|
142294
|
+
WebExpansionPanelDescriptionMetadata.a = null;
|
|
142295
|
+
return WebExpansionPanelDescriptionMetadata;
|
|
142296
|
+
})();
|
|
142297
|
+
/**
|
|
142298
|
+
* @hidden
|
|
142299
|
+
*/
|
|
142300
|
+
let WebExpansionPanelComponentEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
142301
|
+
class WebExpansionPanelComponentEventArgsDescriptionMetadata extends Base {
|
|
142302
|
+
static b(a) {
|
|
142303
|
+
if (WebExpansionPanelComponentEventArgsDescriptionMetadata.a == null) {
|
|
142304
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
142305
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.c(WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
|
|
142306
|
+
}
|
|
142307
|
+
if (a.g(WebExpansionPanelComponentEventArgsDescriptionMetadata.a)) {
|
|
142308
|
+
return;
|
|
142309
|
+
}
|
|
142310
|
+
a.s(WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
|
|
142311
|
+
WebExpansionPanelDescriptionMetadata.d(a);
|
|
142312
|
+
}
|
|
142313
|
+
static c(a) {
|
|
142314
|
+
a.item("__qualifiedNameTS", "String:ExpansionPanelComponentEventArgs");
|
|
142315
|
+
a.item("Detail", "ExportedType:WebExpansionPanel");
|
|
142316
|
+
}
|
|
142317
|
+
static d(a) {
|
|
142318
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.b(a);
|
|
142319
|
+
a.u("WebExpansionPanelComponentEventArgs", () => new WebExpansionPanelComponentEventArgsDescription());
|
|
142320
|
+
a.t("WebExpansionPanelComponentEventArgs", WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
|
|
142321
|
+
}
|
|
142322
|
+
}
|
|
142323
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.$t = markType(WebExpansionPanelComponentEventArgsDescriptionMetadata, 'WebExpansionPanelComponentEventArgsDescriptionMetadata');
|
|
142324
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.a = null;
|
|
142325
|
+
return WebExpansionPanelComponentEventArgsDescriptionMetadata;
|
|
142326
|
+
})();
|
|
142327
|
+
|
|
142328
|
+
/*
|
|
142329
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
142330
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
142331
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
142332
|
+
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.
|
|
142333
|
+
*/
|
|
142334
|
+
|
|
142335
|
+
/*
|
|
142336
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
142337
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
142338
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
142339
|
+
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.
|
|
142340
|
+
*/
|
|
142341
|
+
|
|
142342
|
+
/*
|
|
142343
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
142344
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
142345
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
142346
|
+
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.
|
|
142347
|
+
*/
|
|
142348
|
+
/**
|
|
142349
|
+
* @hidden
|
|
142350
|
+
*/
|
|
142351
|
+
let WebExpansionPanelDescriptionModule = /*@__PURE__*/ (() => {
|
|
142352
|
+
class WebExpansionPanelDescriptionModule extends Base {
|
|
142353
|
+
static register(a) {
|
|
142354
|
+
WebExpansionPanelDescriptionMetadata.d(a);
|
|
142355
|
+
}
|
|
142356
|
+
}
|
|
142357
|
+
WebExpansionPanelDescriptionModule.$t = markType(WebExpansionPanelDescriptionModule, 'WebExpansionPanelDescriptionModule');
|
|
142358
|
+
return WebExpansionPanelDescriptionModule;
|
|
142359
|
+
})();
|
|
142360
|
+
|
|
142139
142361
|
/*
|
|
142140
142362
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
142141
142363
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -143662,6 +143884,140 @@ let WebListDescriptionModule = /*@__PURE__*/ (() => {
|
|
|
143662
143884
|
return WebListDescriptionModule;
|
|
143663
143885
|
})();
|
|
143664
143886
|
|
|
143887
|
+
/*
|
|
143888
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
143889
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
143890
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
143891
|
+
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.
|
|
143892
|
+
*/
|
|
143893
|
+
/**
|
|
143894
|
+
* @hidden
|
|
143895
|
+
*/
|
|
143896
|
+
let WebMaskInputDescription = /*@__PURE__*/ (() => {
|
|
143897
|
+
class WebMaskInputDescription extends WebInputBaseDescription {
|
|
143898
|
+
constructor() {
|
|
143899
|
+
super();
|
|
143900
|
+
this.ae = null;
|
|
143901
|
+
this.ac = false;
|
|
143902
|
+
this.ai = null;
|
|
143903
|
+
this.ah = null;
|
|
143904
|
+
this.af = null;
|
|
143905
|
+
this.ag = null;
|
|
143906
|
+
}
|
|
143907
|
+
get_type() {
|
|
143908
|
+
return "WebMaskInput";
|
|
143909
|
+
}
|
|
143910
|
+
get dir() {
|
|
143911
|
+
return this.ae;
|
|
143912
|
+
}
|
|
143913
|
+
set dir(a) {
|
|
143914
|
+
this.ae = a;
|
|
143915
|
+
this.e("Dir");
|
|
143916
|
+
}
|
|
143917
|
+
get invalid() {
|
|
143918
|
+
return this.ac;
|
|
143919
|
+
}
|
|
143920
|
+
set invalid(a) {
|
|
143921
|
+
this.ac = a;
|
|
143922
|
+
this.e("Invalid");
|
|
143923
|
+
}
|
|
143924
|
+
get valueMode() {
|
|
143925
|
+
return this.ai;
|
|
143926
|
+
}
|
|
143927
|
+
set valueMode(a) {
|
|
143928
|
+
this.ai = a;
|
|
143929
|
+
this.e("ValueMode");
|
|
143930
|
+
}
|
|
143931
|
+
get value() {
|
|
143932
|
+
return this.ah;
|
|
143933
|
+
}
|
|
143934
|
+
set value(a) {
|
|
143935
|
+
this.ah = a;
|
|
143936
|
+
this.e("Value");
|
|
143937
|
+
}
|
|
143938
|
+
get mask() {
|
|
143939
|
+
return this.af;
|
|
143940
|
+
}
|
|
143941
|
+
set mask(a) {
|
|
143942
|
+
this.af = a;
|
|
143943
|
+
this.e("Mask");
|
|
143944
|
+
}
|
|
143945
|
+
get prompt() {
|
|
143946
|
+
return this.ag;
|
|
143947
|
+
}
|
|
143948
|
+
set prompt(a) {
|
|
143949
|
+
this.ag = a;
|
|
143950
|
+
this.e("Prompt");
|
|
143951
|
+
}
|
|
143952
|
+
}
|
|
143953
|
+
WebMaskInputDescription.$t = markType(WebMaskInputDescription, 'WebMaskInputDescription', WebInputBaseDescription.$);
|
|
143954
|
+
return WebMaskInputDescription;
|
|
143955
|
+
})();
|
|
143956
|
+
|
|
143957
|
+
/*
|
|
143958
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
143959
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
143960
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
143961
|
+
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.
|
|
143962
|
+
*/
|
|
143963
|
+
/**
|
|
143964
|
+
* @hidden
|
|
143965
|
+
*/
|
|
143966
|
+
let WebMaskInputDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
143967
|
+
class WebMaskInputDescriptionMetadata extends Base {
|
|
143968
|
+
static b(a) {
|
|
143969
|
+
if (WebMaskInputDescriptionMetadata.a == null) {
|
|
143970
|
+
WebMaskInputDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
143971
|
+
WebMaskInputDescriptionMetadata.c(WebMaskInputDescriptionMetadata.a);
|
|
143972
|
+
}
|
|
143973
|
+
if (a.g(WebMaskInputDescriptionMetadata.a)) {
|
|
143974
|
+
return;
|
|
143975
|
+
}
|
|
143976
|
+
a.s(WebMaskInputDescriptionMetadata.a);
|
|
143977
|
+
}
|
|
143978
|
+
static c(a) {
|
|
143979
|
+
WebInputBaseDescriptionMetadata.c(a);
|
|
143980
|
+
a.item("__qualifiedNameTS", "String:MaskInput");
|
|
143981
|
+
a.item("Dir", "ExportedType:string:MaskInputDir");
|
|
143982
|
+
a.item("Dir@names", "Ltr;Rtl;Auto");
|
|
143983
|
+
a.item("Invalid", "Boolean");
|
|
143984
|
+
a.item("ValueMode", "ExportedType:string:MaskInputValueMode");
|
|
143985
|
+
a.item("ValueMode@names", "Raw;WithFormatting");
|
|
143986
|
+
a.item("Value", "String");
|
|
143987
|
+
a.item("Mask", "String");
|
|
143988
|
+
a.item("Prompt", "String");
|
|
143989
|
+
}
|
|
143990
|
+
static d(a) {
|
|
143991
|
+
WebMaskInputDescriptionMetadata.b(a);
|
|
143992
|
+
a.u("WebMaskInput", () => new WebMaskInputDescription());
|
|
143993
|
+
a.t("WebMaskInput", WebMaskInputDescriptionMetadata.a);
|
|
143994
|
+
}
|
|
143995
|
+
}
|
|
143996
|
+
WebMaskInputDescriptionMetadata.$t = markType(WebMaskInputDescriptionMetadata, 'WebMaskInputDescriptionMetadata');
|
|
143997
|
+
WebMaskInputDescriptionMetadata.a = null;
|
|
143998
|
+
return WebMaskInputDescriptionMetadata;
|
|
143999
|
+
})();
|
|
144000
|
+
|
|
144001
|
+
/*
|
|
144002
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
144003
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
144004
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
144005
|
+
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.
|
|
144006
|
+
*/
|
|
144007
|
+
/**
|
|
144008
|
+
* @hidden
|
|
144009
|
+
*/
|
|
144010
|
+
let WebMaskInputDescriptionModule = /*@__PURE__*/ (() => {
|
|
144011
|
+
class WebMaskInputDescriptionModule extends Base {
|
|
144012
|
+
static register(a) {
|
|
144013
|
+
WebInputBaseDescriptionModule.register(a);
|
|
144014
|
+
WebMaskInputDescriptionMetadata.d(a);
|
|
144015
|
+
}
|
|
144016
|
+
}
|
|
144017
|
+
WebMaskInputDescriptionModule.$t = markType(WebMaskInputDescriptionModule, 'WebMaskInputDescriptionModule');
|
|
144018
|
+
return WebMaskInputDescriptionModule;
|
|
144019
|
+
})();
|
|
144020
|
+
|
|
143665
144021
|
/*
|
|
143666
144022
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
143667
144023
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -146726,6 +147082,494 @@ let WebToastDescriptionModule = /*@__PURE__*/ (() => {
|
|
|
146726
147082
|
return WebToastDescriptionModule;
|
|
146727
147083
|
})();
|
|
146728
147084
|
|
|
147085
|
+
/*
|
|
147086
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
147087
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
147088
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
147089
|
+
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.
|
|
147090
|
+
*/
|
|
147091
|
+
/**
|
|
147092
|
+
* @hidden
|
|
147093
|
+
*/
|
|
147094
|
+
let WebTreeDescription = /*@__PURE__*/ (() => {
|
|
147095
|
+
class WebTreeDescription extends Description {
|
|
147096
|
+
constructor() {
|
|
147097
|
+
super();
|
|
147098
|
+
this.f = false;
|
|
147099
|
+
this.n = null;
|
|
147100
|
+
this.i = null;
|
|
147101
|
+
this.p = null;
|
|
147102
|
+
this.o = null;
|
|
147103
|
+
this.m = null;
|
|
147104
|
+
this.l = null;
|
|
147105
|
+
this.k = null;
|
|
147106
|
+
this.j = null;
|
|
147107
|
+
this.h = null;
|
|
147108
|
+
}
|
|
147109
|
+
get_type() {
|
|
147110
|
+
return "WebTree";
|
|
147111
|
+
}
|
|
147112
|
+
get type() {
|
|
147113
|
+
return this.get_type();
|
|
147114
|
+
}
|
|
147115
|
+
get singleBranchExpand() {
|
|
147116
|
+
return this.f;
|
|
147117
|
+
}
|
|
147118
|
+
set singleBranchExpand(a) {
|
|
147119
|
+
this.f = a;
|
|
147120
|
+
this.e("SingleBranchExpand");
|
|
147121
|
+
}
|
|
147122
|
+
get selection() {
|
|
147123
|
+
return this.n;
|
|
147124
|
+
}
|
|
147125
|
+
set selection(a) {
|
|
147126
|
+
this.n = a;
|
|
147127
|
+
this.e("Selection");
|
|
147128
|
+
}
|
|
147129
|
+
get dir() {
|
|
147130
|
+
return this.i;
|
|
147131
|
+
}
|
|
147132
|
+
set dir(a) {
|
|
147133
|
+
this.i = a;
|
|
147134
|
+
this.e("Dir");
|
|
147135
|
+
}
|
|
147136
|
+
get size() {
|
|
147137
|
+
return this.p;
|
|
147138
|
+
}
|
|
147139
|
+
set size(a) {
|
|
147140
|
+
this.p = a;
|
|
147141
|
+
this.e("Size");
|
|
147142
|
+
}
|
|
147143
|
+
get selectionChangedRef() {
|
|
147144
|
+
return this.o;
|
|
147145
|
+
}
|
|
147146
|
+
set selectionChangedRef(a) {
|
|
147147
|
+
this.o = a;
|
|
147148
|
+
this.e("SelectionChangedRef");
|
|
147149
|
+
}
|
|
147150
|
+
get itemExpandingRef() {
|
|
147151
|
+
return this.m;
|
|
147152
|
+
}
|
|
147153
|
+
set itemExpandingRef(a) {
|
|
147154
|
+
this.m = a;
|
|
147155
|
+
this.e("ItemExpandingRef");
|
|
147156
|
+
}
|
|
147157
|
+
get itemExpandedRef() {
|
|
147158
|
+
return this.l;
|
|
147159
|
+
}
|
|
147160
|
+
set itemExpandedRef(a) {
|
|
147161
|
+
this.l = a;
|
|
147162
|
+
this.e("ItemExpandedRef");
|
|
147163
|
+
}
|
|
147164
|
+
get itemCollapsingRef() {
|
|
147165
|
+
return this.k;
|
|
147166
|
+
}
|
|
147167
|
+
set itemCollapsingRef(a) {
|
|
147168
|
+
this.k = a;
|
|
147169
|
+
this.e("ItemCollapsingRef");
|
|
147170
|
+
}
|
|
147171
|
+
get itemCollapsedRef() {
|
|
147172
|
+
return this.j;
|
|
147173
|
+
}
|
|
147174
|
+
set itemCollapsedRef(a) {
|
|
147175
|
+
this.j = a;
|
|
147176
|
+
this.e("ItemCollapsedRef");
|
|
147177
|
+
}
|
|
147178
|
+
get activeItemRef() {
|
|
147179
|
+
return this.h;
|
|
147180
|
+
}
|
|
147181
|
+
set activeItemRef(a) {
|
|
147182
|
+
this.h = a;
|
|
147183
|
+
this.e("ActiveItemRef");
|
|
147184
|
+
}
|
|
147185
|
+
}
|
|
147186
|
+
WebTreeDescription.$t = markType(WebTreeDescription, 'WebTreeDescription', Description.$);
|
|
147187
|
+
return WebTreeDescription;
|
|
147188
|
+
})();
|
|
147189
|
+
|
|
147190
|
+
/*
|
|
147191
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
147192
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
147193
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
147194
|
+
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.
|
|
147195
|
+
*/
|
|
147196
|
+
/**
|
|
147197
|
+
* @hidden
|
|
147198
|
+
*/
|
|
147199
|
+
let WebTreeSelectionOptionsEventArgsDescription = /*@__PURE__*/ (() => {
|
|
147200
|
+
class WebTreeSelectionOptionsEventArgsDescription extends Description {
|
|
147201
|
+
constructor() {
|
|
147202
|
+
super();
|
|
147203
|
+
this.f = null;
|
|
147204
|
+
}
|
|
147205
|
+
get_type() {
|
|
147206
|
+
return "WebTreeSelectionOptionsEventArgs";
|
|
147207
|
+
}
|
|
147208
|
+
get type() {
|
|
147209
|
+
return this.get_type();
|
|
147210
|
+
}
|
|
147211
|
+
get newSelection() {
|
|
147212
|
+
return this.f;
|
|
147213
|
+
}
|
|
147214
|
+
set newSelection(a) {
|
|
147215
|
+
this.f = a;
|
|
147216
|
+
this.e("NewSelection");
|
|
147217
|
+
}
|
|
147218
|
+
}
|
|
147219
|
+
WebTreeSelectionOptionsEventArgsDescription.$t = markType(WebTreeSelectionOptionsEventArgsDescription, 'WebTreeSelectionOptionsEventArgsDescription', Description.$);
|
|
147220
|
+
return WebTreeSelectionOptionsEventArgsDescription;
|
|
147221
|
+
})();
|
|
147222
|
+
|
|
147223
|
+
/*
|
|
147224
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
147225
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
147226
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
147227
|
+
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.
|
|
147228
|
+
*/
|
|
147229
|
+
/**
|
|
147230
|
+
* @hidden
|
|
147231
|
+
*/
|
|
147232
|
+
let WebTreeSelectionOptionsEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
147233
|
+
class WebTreeSelectionOptionsEventArgsDescriptionMetadata extends Base {
|
|
147234
|
+
static b(a) {
|
|
147235
|
+
if (WebTreeSelectionOptionsEventArgsDescriptionMetadata.a == null) {
|
|
147236
|
+
WebTreeSelectionOptionsEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
147237
|
+
WebTreeSelectionOptionsEventArgsDescriptionMetadata.c(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
|
|
147238
|
+
}
|
|
147239
|
+
if (a.g(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a)) {
|
|
147240
|
+
return;
|
|
147241
|
+
}
|
|
147242
|
+
a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
|
|
147243
|
+
}
|
|
147244
|
+
static c(a) {
|
|
147245
|
+
a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
|
|
147246
|
+
a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
|
|
147247
|
+
}
|
|
147248
|
+
static d(a) {
|
|
147249
|
+
WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
|
|
147250
|
+
a.u("WebTreeSelectionOptionsEventArgs", () => new WebTreeSelectionOptionsEventArgsDescription());
|
|
147251
|
+
a.t("WebTreeSelectionOptionsEventArgs", WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
|
|
147252
|
+
}
|
|
147253
|
+
}
|
|
147254
|
+
WebTreeSelectionOptionsEventArgsDescriptionMetadata.$t = markType(WebTreeSelectionOptionsEventArgsDescriptionMetadata, 'WebTreeSelectionOptionsEventArgsDescriptionMetadata');
|
|
147255
|
+
WebTreeSelectionOptionsEventArgsDescriptionMetadata.a = null;
|
|
147256
|
+
return WebTreeSelectionOptionsEventArgsDescriptionMetadata;
|
|
147257
|
+
})();
|
|
147258
|
+
|
|
147259
|
+
/*
|
|
147260
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
147261
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
147262
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
147263
|
+
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.
|
|
147264
|
+
*/
|
|
147265
|
+
/**
|
|
147266
|
+
* @hidden
|
|
147267
|
+
*/
|
|
147268
|
+
let WebTreeItemDescription = /*@__PURE__*/ (() => {
|
|
147269
|
+
class WebTreeItemDescription extends Description {
|
|
147270
|
+
constructor() {
|
|
147271
|
+
super();
|
|
147272
|
+
this.f = null;
|
|
147273
|
+
this.k = false;
|
|
147274
|
+
this.t = 0;
|
|
147275
|
+
this.v = null;
|
|
147276
|
+
this.j = false;
|
|
147277
|
+
this.h = false;
|
|
147278
|
+
this.i = false;
|
|
147279
|
+
this.m = false;
|
|
147280
|
+
this.l = false;
|
|
147281
|
+
this.w = null;
|
|
147282
|
+
}
|
|
147283
|
+
get_type() {
|
|
147284
|
+
return "WebTreeItem";
|
|
147285
|
+
}
|
|
147286
|
+
get type() {
|
|
147287
|
+
return this.get_type();
|
|
147288
|
+
}
|
|
147289
|
+
get parent() {
|
|
147290
|
+
return this.f;
|
|
147291
|
+
}
|
|
147292
|
+
set parent(a) {
|
|
147293
|
+
this.f = a;
|
|
147294
|
+
this.e("Parent");
|
|
147295
|
+
}
|
|
147296
|
+
get init() {
|
|
147297
|
+
return this.k;
|
|
147298
|
+
}
|
|
147299
|
+
set init(a) {
|
|
147300
|
+
this.k = a;
|
|
147301
|
+
this.e("Init");
|
|
147302
|
+
}
|
|
147303
|
+
get level() {
|
|
147304
|
+
return this.t;
|
|
147305
|
+
}
|
|
147306
|
+
set level(a) {
|
|
147307
|
+
this.t = a;
|
|
147308
|
+
this.e("Level");
|
|
147309
|
+
}
|
|
147310
|
+
get label() {
|
|
147311
|
+
return this.v;
|
|
147312
|
+
}
|
|
147313
|
+
set label(a) {
|
|
147314
|
+
this.v = a;
|
|
147315
|
+
this.e("Label");
|
|
147316
|
+
}
|
|
147317
|
+
get expanded() {
|
|
147318
|
+
return this.j;
|
|
147319
|
+
}
|
|
147320
|
+
set expanded(a) {
|
|
147321
|
+
this.j = a;
|
|
147322
|
+
this.e("Expanded");
|
|
147323
|
+
}
|
|
147324
|
+
get active() {
|
|
147325
|
+
return this.h;
|
|
147326
|
+
}
|
|
147327
|
+
set active(a) {
|
|
147328
|
+
this.h = a;
|
|
147329
|
+
this.e("Active");
|
|
147330
|
+
}
|
|
147331
|
+
get disabled() {
|
|
147332
|
+
return this.i;
|
|
147333
|
+
}
|
|
147334
|
+
set disabled(a) {
|
|
147335
|
+
this.i = a;
|
|
147336
|
+
this.e("Disabled");
|
|
147337
|
+
}
|
|
147338
|
+
get selected() {
|
|
147339
|
+
return this.m;
|
|
147340
|
+
}
|
|
147341
|
+
set selected(a) {
|
|
147342
|
+
this.m = a;
|
|
147343
|
+
this.e("Selected");
|
|
147344
|
+
}
|
|
147345
|
+
get loading() {
|
|
147346
|
+
return this.l;
|
|
147347
|
+
}
|
|
147348
|
+
set loading(a) {
|
|
147349
|
+
this.l = a;
|
|
147350
|
+
this.e("Loading");
|
|
147351
|
+
}
|
|
147352
|
+
get valueRef() {
|
|
147353
|
+
return this.w;
|
|
147354
|
+
}
|
|
147355
|
+
set valueRef(a) {
|
|
147356
|
+
this.w = a;
|
|
147357
|
+
this.e("ValueRef");
|
|
147358
|
+
}
|
|
147359
|
+
}
|
|
147360
|
+
WebTreeItemDescription.$t = markType(WebTreeItemDescription, 'WebTreeItemDescription', Description.$);
|
|
147361
|
+
return WebTreeItemDescription;
|
|
147362
|
+
})();
|
|
147363
|
+
|
|
147364
|
+
/*
|
|
147365
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
147366
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
147367
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
147368
|
+
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.
|
|
147369
|
+
*/
|
|
147370
|
+
/**
|
|
147371
|
+
* @hidden
|
|
147372
|
+
*/
|
|
147373
|
+
let WebTreeItemDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
147374
|
+
class WebTreeItemDescriptionMetadata extends Base {
|
|
147375
|
+
static b(a) {
|
|
147376
|
+
if (WebTreeItemDescriptionMetadata.a == null) {
|
|
147377
|
+
WebTreeItemDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
147378
|
+
WebTreeItemDescriptionMetadata.c(WebTreeItemDescriptionMetadata.a);
|
|
147379
|
+
}
|
|
147380
|
+
if (a.g(WebTreeItemDescriptionMetadata.a)) {
|
|
147381
|
+
return;
|
|
147382
|
+
}
|
|
147383
|
+
a.s(WebTreeItemDescriptionMetadata.a);
|
|
147384
|
+
WebTreeItemDescriptionMetadata.d(a);
|
|
147385
|
+
}
|
|
147386
|
+
static c(a) {
|
|
147387
|
+
a.item("__qualifiedNameTS", "String:TreeItem");
|
|
147388
|
+
a.item("Parent", "ExportedType:WebTreeItem");
|
|
147389
|
+
a.item("Init", "Boolean");
|
|
147390
|
+
a.item("Level", "Number:double");
|
|
147391
|
+
a.item("Label", "String");
|
|
147392
|
+
a.item("Expanded", "Boolean");
|
|
147393
|
+
a.item("Active", "Boolean");
|
|
147394
|
+
a.item("Disabled", "Boolean");
|
|
147395
|
+
a.item("Selected", "Boolean");
|
|
147396
|
+
a.item("Loading", "Boolean");
|
|
147397
|
+
a.item("ValueRef", "(w:Value,wf:Value)DataRef");
|
|
147398
|
+
}
|
|
147399
|
+
static d(a) {
|
|
147400
|
+
WebTreeItemDescriptionMetadata.b(a);
|
|
147401
|
+
a.u("WebTreeItem", () => new WebTreeItemDescription());
|
|
147402
|
+
a.t("WebTreeItem", WebTreeItemDescriptionMetadata.a);
|
|
147403
|
+
}
|
|
147404
|
+
}
|
|
147405
|
+
WebTreeItemDescriptionMetadata.$t = markType(WebTreeItemDescriptionMetadata, 'WebTreeItemDescriptionMetadata');
|
|
147406
|
+
WebTreeItemDescriptionMetadata.a = null;
|
|
147407
|
+
return WebTreeItemDescriptionMetadata;
|
|
147408
|
+
})();
|
|
147409
|
+
|
|
147410
|
+
/*
|
|
147411
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
147412
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
147413
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
147414
|
+
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.
|
|
147415
|
+
*/
|
|
147416
|
+
/**
|
|
147417
|
+
* @hidden
|
|
147418
|
+
*/
|
|
147419
|
+
let WebTreeItemComponentEventArgsDescription = /*@__PURE__*/ (() => {
|
|
147420
|
+
class WebTreeItemComponentEventArgsDescription extends Description {
|
|
147421
|
+
constructor() {
|
|
147422
|
+
super();
|
|
147423
|
+
this.f = null;
|
|
147424
|
+
}
|
|
147425
|
+
get_type() {
|
|
147426
|
+
return "WebTreeItemComponentEventArgs";
|
|
147427
|
+
}
|
|
147428
|
+
get type() {
|
|
147429
|
+
return this.get_type();
|
|
147430
|
+
}
|
|
147431
|
+
get detail() {
|
|
147432
|
+
return this.f;
|
|
147433
|
+
}
|
|
147434
|
+
set detail(a) {
|
|
147435
|
+
this.f = a;
|
|
147436
|
+
this.e("Detail");
|
|
147437
|
+
}
|
|
147438
|
+
}
|
|
147439
|
+
WebTreeItemComponentEventArgsDescription.$t = markType(WebTreeItemComponentEventArgsDescription, 'WebTreeItemComponentEventArgsDescription', Description.$);
|
|
147440
|
+
return WebTreeItemComponentEventArgsDescription;
|
|
147441
|
+
})();
|
|
147442
|
+
|
|
147443
|
+
/*
|
|
147444
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
147445
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
147446
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
147447
|
+
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.
|
|
147448
|
+
*/
|
|
147449
|
+
/**
|
|
147450
|
+
* @hidden
|
|
147451
|
+
*/
|
|
147452
|
+
let WebTreeItemComponentEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
147453
|
+
class WebTreeItemComponentEventArgsDescriptionMetadata extends Base {
|
|
147454
|
+
static b(a) {
|
|
147455
|
+
if (WebTreeItemComponentEventArgsDescriptionMetadata.a == null) {
|
|
147456
|
+
WebTreeItemComponentEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
147457
|
+
WebTreeItemComponentEventArgsDescriptionMetadata.c(WebTreeItemComponentEventArgsDescriptionMetadata.a);
|
|
147458
|
+
}
|
|
147459
|
+
if (a.g(WebTreeItemComponentEventArgsDescriptionMetadata.a)) {
|
|
147460
|
+
return;
|
|
147461
|
+
}
|
|
147462
|
+
a.s(WebTreeItemComponentEventArgsDescriptionMetadata.a);
|
|
147463
|
+
WebTreeItemDescriptionMetadata.d(a);
|
|
147464
|
+
}
|
|
147465
|
+
static c(a) {
|
|
147466
|
+
a.item("__qualifiedNameTS", "String:TreeItemComponentEventArgs");
|
|
147467
|
+
a.item("Detail", "ExportedType:WebTreeItem");
|
|
147468
|
+
}
|
|
147469
|
+
static d(a) {
|
|
147470
|
+
WebTreeItemComponentEventArgsDescriptionMetadata.b(a);
|
|
147471
|
+
a.u("WebTreeItemComponentEventArgs", () => new WebTreeItemComponentEventArgsDescription());
|
|
147472
|
+
a.t("WebTreeItemComponentEventArgs", WebTreeItemComponentEventArgsDescriptionMetadata.a);
|
|
147473
|
+
}
|
|
147474
|
+
}
|
|
147475
|
+
WebTreeItemComponentEventArgsDescriptionMetadata.$t = markType(WebTreeItemComponentEventArgsDescriptionMetadata, 'WebTreeItemComponentEventArgsDescriptionMetadata');
|
|
147476
|
+
WebTreeItemComponentEventArgsDescriptionMetadata.a = null;
|
|
147477
|
+
return WebTreeItemComponentEventArgsDescriptionMetadata;
|
|
147478
|
+
})();
|
|
147479
|
+
|
|
147480
|
+
/*
|
|
147481
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
147482
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
147483
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
147484
|
+
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.
|
|
147485
|
+
*/
|
|
147486
|
+
/**
|
|
147487
|
+
* @hidden
|
|
147488
|
+
*/
|
|
147489
|
+
let WebTreeDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
147490
|
+
class WebTreeDescriptionMetadata extends Base {
|
|
147491
|
+
static b(a) {
|
|
147492
|
+
if (WebTreeDescriptionMetadata.a == null) {
|
|
147493
|
+
WebTreeDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
147494
|
+
WebTreeDescriptionMetadata.c(WebTreeDescriptionMetadata.a);
|
|
147495
|
+
}
|
|
147496
|
+
if (a.g(WebTreeDescriptionMetadata.a)) {
|
|
147497
|
+
return;
|
|
147498
|
+
}
|
|
147499
|
+
a.s(WebTreeDescriptionMetadata.a);
|
|
147500
|
+
WebTreeSelectionOptionsEventArgsDescriptionMetadata.d(a);
|
|
147501
|
+
WebTreeItemComponentEventArgsDescriptionMetadata.d(a);
|
|
147502
|
+
}
|
|
147503
|
+
static c(a) {
|
|
147504
|
+
a.item("__qualifiedNameTS", "String:Tree");
|
|
147505
|
+
a.item("SingleBranchExpand", "Boolean");
|
|
147506
|
+
a.item("Selection", "ExportedType:string:TreeSelection");
|
|
147507
|
+
a.item("Selection@names", "Multiple;None;Cascade");
|
|
147508
|
+
a.item("Dir", "ExportedType:string:TreeDir");
|
|
147509
|
+
a.item("Dir@names", "Ltr;Rtl;Auto");
|
|
147510
|
+
a.item("Size", "ExportedType:string:SizableComponentSize");
|
|
147511
|
+
a.item("Size@names", "Large;Small;Medium");
|
|
147512
|
+
a.item("SelectionChangedRef", "EventRef::selectionChanged");
|
|
147513
|
+
a.item("ItemExpandingRef", "EventRef::itemExpanding");
|
|
147514
|
+
a.item("ItemExpandedRef", "EventRef::itemExpanded");
|
|
147515
|
+
a.item("ItemCollapsingRef", "EventRef::itemCollapsing");
|
|
147516
|
+
a.item("ItemCollapsedRef", "EventRef::itemCollapsed");
|
|
147517
|
+
a.item("ActiveItemRef", "EventRef::activeItem");
|
|
147518
|
+
}
|
|
147519
|
+
static d(a) {
|
|
147520
|
+
WebTreeDescriptionMetadata.b(a);
|
|
147521
|
+
a.u("WebTree", () => new WebTreeDescription());
|
|
147522
|
+
a.t("WebTree", WebTreeDescriptionMetadata.a);
|
|
147523
|
+
}
|
|
147524
|
+
}
|
|
147525
|
+
WebTreeDescriptionMetadata.$t = markType(WebTreeDescriptionMetadata, 'WebTreeDescriptionMetadata');
|
|
147526
|
+
WebTreeDescriptionMetadata.a = null;
|
|
147527
|
+
return WebTreeDescriptionMetadata;
|
|
147528
|
+
})();
|
|
147529
|
+
|
|
147530
|
+
/*
|
|
147531
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
147532
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
147533
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
147534
|
+
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.
|
|
147535
|
+
*/
|
|
147536
|
+
/**
|
|
147537
|
+
* @hidden
|
|
147538
|
+
*/
|
|
147539
|
+
let WebTreeItemDescriptionModule = /*@__PURE__*/ (() => {
|
|
147540
|
+
class WebTreeItemDescriptionModule extends Base {
|
|
147541
|
+
static register(a) {
|
|
147542
|
+
WebTreeItemDescriptionMetadata.d(a);
|
|
147543
|
+
}
|
|
147544
|
+
}
|
|
147545
|
+
WebTreeItemDescriptionModule.$t = markType(WebTreeItemDescriptionModule, 'WebTreeItemDescriptionModule');
|
|
147546
|
+
return WebTreeItemDescriptionModule;
|
|
147547
|
+
})();
|
|
147548
|
+
|
|
147549
|
+
/*
|
|
147550
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
147551
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
147552
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
147553
|
+
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.
|
|
147554
|
+
*/
|
|
147555
|
+
/**
|
|
147556
|
+
* @hidden
|
|
147557
|
+
*/
|
|
147558
|
+
let WebTreeDescriptionModule = /*@__PURE__*/ (() => {
|
|
147559
|
+
class WebTreeDescriptionModule extends Base {
|
|
147560
|
+
static register(a) {
|
|
147561
|
+
WebTreeItemDescriptionModule.register(a);
|
|
147562
|
+
WebTreeItemDescriptionModule.register(a);
|
|
147563
|
+
WebTreeItemDescriptionModule.register(a);
|
|
147564
|
+
WebTreeItemDescriptionModule.register(a);
|
|
147565
|
+
WebTreeItemDescriptionModule.register(a);
|
|
147566
|
+
WebTreeDescriptionMetadata.d(a);
|
|
147567
|
+
}
|
|
147568
|
+
}
|
|
147569
|
+
WebTreeDescriptionModule.$t = markType(WebTreeDescriptionModule, 'WebTreeDescriptionModule');
|
|
147570
|
+
return WebTreeDescriptionModule;
|
|
147571
|
+
})();
|
|
147572
|
+
|
|
146729
147573
|
/*
|
|
146730
147574
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
146731
147575
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -182946,4 +183790,4 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
182946
183790
|
* Generated bundle index. Do not edit.
|
|
182947
183791
|
*/
|
|
182948
183792
|
|
|
182949
|
-
export { APIFactory, AbsoluteVolumeOscillatorIndicatorDescription, AbsoluteVolumeOscillatorIndicatorDescriptionMetadata, AbsoluteVolumeOscillatorIndicatorDescriptionModule, AbstractEnumerable, AbstractEnumerator, AccumulationDistributionIndicatorDescription, AccumulationDistributionIndicatorDescriptionMetadata, AccumulationDistributionIndicatorDescriptionModule, Activator, AggregateException, AlignLinearGraphLabelEventArgsDescription, AlignLinearGraphLabelEventArgsDescriptionMetadata, AlignRadialGaugeLabelEventArgsDescription, AlignRadialGaugeLabelEventArgsDescriptionMetadata, AnchoredCategorySeriesDescription, AnchoredCategorySeriesDescriptionMetadata, AnchoredRadialSeriesDescription, AnchoredRadialSeriesDescriptionMetadata, AngleSimplifier, AngularCodeBehindCodeGeneratingComponentRendererCodeEmitter, AngularRenderer, AngularTemplateCodeGeneratingComponentRendererCodeEmitter, AngularWrapper, AnimationBrowserTickProvider, AnimationKeyFrame, AnimationKeyFrameEffect, AnimationKeyFrameEffectTargetType_$type, AnimationKeyFrameEffectTiming, AnimationKeyFrameProperty, AnimationManager, AnimationState, AnnotationLayerDescription, AnnotationLayerDescriptionMetadata, AnnotationLayerProxyDescriptionModule, AppearanceHelper, ApplyButtonClickEventArgsDescription, ApplyButtonClickEventArgsDescriptionMetadata, ArcGISOnlineMapImageryDescription, ArcGISOnlineMapImageryDescriptionMetadata, ArcGISOnlineMapImageryDescriptionModule, ArcGISOnlineTileSource, ArcSegment, ArcSegmentData, AreaFragmentDescription, AreaFragmentDescriptionMetadata, AreaFragmentDescriptionModule, AreaSeriesDescription, AreaSeriesDescriptionMetadata, AreaSeriesDescriptionModule, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayAccessHelper, ArrayBox$1, ArrayExtension, Array_$type, AsciiEncoding, AssigningCategoryMarkerStyleEventArgsDescription, AssigningCategoryMarkerStyleEventArgsDescriptionMetadata, AssigningCategoryStyleEventArgsBaseDescription, AssigningCategoryStyleEventArgsBaseDescriptionMetadata, AssigningCategoryStyleEventArgsDescription, AssigningCategoryStyleEventArgsDescriptionMetadata, AssigningPolarMarkerStyleEventArgsDescription, AssigningPolarMarkerStyleEventArgsDescriptionMetadata, AssigningPolarStyleEventArgsBaseDescription, AssigningPolarStyleEventArgsBaseDescriptionMetadata, AssigningPolarStyleEventArgsDescription, AssigningPolarStyleEventArgsDescriptionMetadata, AssigningRadialMarkerStyleEventArgsDescription, AssigningRadialMarkerStyleEventArgsDescriptionMetadata, AssigningRadialStyleEventArgsBaseDescription, AssigningRadialStyleEventArgsBaseDescriptionMetadata, AssigningRadialStyleEventArgsDescription, AssigningRadialStyleEventArgsDescriptionMetadata, AssigningScatterMarkerStyleEventArgsDescription, AssigningScatterMarkerStyleEventArgsDescriptionMetadata, AssigningScatterStyleEventArgsBaseDescription, AssigningScatterStyleEventArgsBaseDescriptionMetadata, AssigningScatterStyleEventArgsDescription, AssigningScatterStyleEventArgsDescriptionMetadata, AssigningSeriesShapeStyleEventArgsBaseDescription, AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata, AssigningSeriesStyleEventArgsBaseDescription, AssigningSeriesStyleEventArgsBaseDescriptionMetadata, AssigningShapeMarkerStyleEventArgsDescription, AssigningShapeMarkerStyleEventArgsDescriptionMetadata, AssigningShapeStyleEventArgsBaseDescription, AssigningShapeStyleEventArgsBaseDescriptionMetadata, AssigningShapeStyleEventArgsDescription, AssigningShapeStyleEventArgsDescriptionMetadata, AsyncCompletedEventArgs, AsyncCompletedEventArgsDescription, AsyncCompletedEventArgsDescriptionMetadata, AsyncDataSourcePageRequest, AsyncDataSourcePageTaskHolder, AsyncVirtualDataSourceDataProviderWorkerSettings, AsyncVirtualDataSourceProviderTaskDataHolder, AsyncVirtualDataSourceProviderWorker, AsyncVirtualDataTask, AverageDirectionalIndexIndicatorDescription, AverageDirectionalIndexIndicatorDescriptionMetadata, AverageDirectionalIndexIndicatorDescriptionModule, AverageSummaryCalculator, AverageTrueRangeIndicatorDescription, AverageTrueRangeIndicatorDescriptionMetadata, AverageTrueRangeIndicatorDescriptionModule, AxisAnnotationDescription, AxisAnnotationDescriptionMetadata, AxisDescription, AxisDescriptionMetadata, AxisRangeChangedEventArgsDescription, AxisRangeChangedEventArgsDescriptionMetadata, BarFragmentDescription, BarFragmentDescriptionMetadata, BarFragmentDescriptionModule, BarSeriesDescription, BarSeriesDescriptionMetadata, BarSeriesDescriptionModule, Base, BaseControlTheme, BaseControlTheme_$type, BaseDOMEventProxy, BaseDataSource, BaseDataSourceDescription, BaseDataSourceDescriptionMetadata, BaseError, BaseTransactionService, BezierSegment, BezierSegmentData, BinaryFileDownloader, BinaryReader, BinaryUtil, BinaryWriter, Binding, BindingFormatter, BingMapsMapImageryDescription, BingMapsMapImageryDescriptionMetadata, BingMapsMapImageryDescriptionModule, BingMapsTileSource, BitArray, BitConverter, BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter, BlazorCodeGeneratingComponentRendererModuleEmitter, BlazorRazorCodeGeneratingComponentRendererCodeEmitter, BollingerBandWidthIndicatorDescription, BollingerBandWidthIndicatorDescriptionMetadata, BollingerBandWidthIndicatorDescriptionModule, BollingerBandsOverlayDescription, BollingerBandsOverlayDescriptionMetadata, BollingerBandsOverlayDescriptionModule, Boolean_$type, BottomClipper, Brush, BrushAppearanceData, BrushCollection, BrushCollectionUtil, BrushScaleDescription, BrushScaleDescriptionMetadata, BrushScaleDescriptionModule, BrushUtil, BrushUtilCore, BubbleSeriesDescription, BubbleSeriesDescriptionMetadata, BubbleSeriesDescriptionModule, Buffer, BulletGraphCoreDescriptionModule, BulletGraphDescription, BulletGraphDescriptionMetadata, BulletGraphDescriptionModule, ButtonClickEventArgsDescription, ButtonClickEventArgsDescriptionMetadata, ButtonDescription, ButtonDescriptionMetadata, ButtonDescriptionModule, ButtonGroupDescription, ButtonGroupDescriptionMetadata, ButtonGroupDescriptionModule, ButtonGroupSelectionChangedEventArgsDescription, ButtonGroupSelectionChangedEventArgsDescriptionMetadata, CalculatedColumnDescription, CalculatedColumnDescriptionMetadata, Calendar, CalendarDateDescription, CalendarDateDescriptionMetadata, CalendarDescription, CalendarDescriptionMetadata, CalendarDescriptionModule, CalendarFormatOptionsDescription, CalendarFormatOptionsDescriptionMetadata, CalendarResourceStringsDescription, CalendarResourceStringsDescriptionMetadata, CalendarWeekRule_$type, CalloutAnnotationDescription, CalloutAnnotationDescriptionMetadata, CalloutContentUpdatingEventArgsDescription, CalloutContentUpdatingEventArgsDescriptionMetadata, CalloutLabelUpdatingEventArgsDescription, CalloutLabelUpdatingEventArgsDescriptionMetadata, CalloutLayerDescription, CalloutLayerDescriptionMetadata, CalloutLayerDescriptionModule, CalloutRenderStyleUpdatingEventArgsDescription, CalloutRenderStyleUpdatingEventArgsDescriptionMetadata, CalloutSeriesSelectingEventArgsDescription, CalloutSeriesSelectingEventArgsDescriptionMetadata, CalloutStyleUpdatingEventArgsDescription, CalloutStyleUpdatingEventArgsDescriptionMetadata, CancelBehavior, CancelBehavior_$type, CancelButtonClickEventArgsDescription, CancelButtonClickEventArgsDescriptionMetadata, CancelEventArgs, CancelEventArgsDescription, CancelEventArgsDescriptionMetadata, CancellingMultiScaleImageEventArgs, CancellingMultiScaleImageEventArgsDescription, CancellingMultiScaleImageEventArgsDescriptionMetadata, Canvas, CanvasGestureDOMEventProxy, CanvasRenderScheduler, CanvasViewRenderer, Capture, CategoryAngleAxisDescription, CategoryAngleAxisDescriptionMetadata, CategoryAngleAxisDescriptionModule, CategoryAxisBaseDescription, CategoryAxisBaseDescriptionMetadata, CategoryChartCoreDescriptionModule, CategoryChartDescription, CategoryChartDescriptionMetadata, CategoryChartDescriptionModule, CategoryDateTimeXAxisDescription, CategoryDateTimeXAxisDescriptionMetadata, CategoryDateTimeXAxisDescriptionModule, CategoryHighlightLayerDescription, CategoryHighlightLayerDescriptionMetadata, CategoryHighlightLayerDescriptionModule, CategoryItemHighlightLayerDescription, CategoryItemHighlightLayerDescriptionMetadata, CategoryItemHighlightLayerDescriptionModule, CategorySeriesDescription, CategorySeriesDescriptionMetadata, CategoryToolTipLayerDescription, CategoryToolTipLayerDescriptionMetadata, CategoryToolTipLayerDescriptionModule, CategoryXAxisDescription, CategoryXAxisDescriptionMetadata, CategoryXAxisDescriptionModule, CategoryYAxisDescription, CategoryYAxisDescriptionMetadata, CategoryYAxisDescriptionModule, CellActionManagerDescription, CellActionManagerDescriptionMetadata, CellInfoDescription, CellInfoDescriptionMetadata, CellKeyDescription, CellKeyDescriptionMetadata, CellKeyDescriptionModule, CellRangeDescription, CellRangeDescriptionMetadata, CellRangeDescriptionModule, CellStyleRequestedEventArgsDescription, CellStyleRequestedEventArgsDescriptionMetadata, ChaikinOscillatorIndicatorDescription, ChaikinOscillatorIndicatorDescriptionMetadata, ChaikinOscillatorIndicatorDescriptionModule, ChaikinVolatilityIndicatorDescription, ChaikinVolatilityIndicatorDescriptionMetadata, ChaikinVolatilityIndicatorDescriptionModule, ChartCursorEventArgsDescription, ChartCursorEventArgsDescriptionMetadata, ChartMouseEventArgsDescription, ChartMouseEventArgsDescriptionMetadata, ChartSeriesEventArgsDescription, ChartSeriesEventArgsDescriptionMetadata, CheckboxChangeEventArgsDescription, CheckboxChangeEventArgsDescriptionMetadata, CheckboxDescription, CheckboxDescriptionMetadata, CheckboxDescriptionModule, CheckboxListDescription, CheckboxListDescriptionMetadata, CheckboxListDescriptionModule, CheckedChangedEventArgsDescription, CheckedChangedEventArgsDescriptionMetadata, ChildContentDescriptionModule, ChildContentExtendedDescriptionModule, Clipboard, Clipper, CodeGeneratingCodeWriter, CodeGeneratingComponentRenderer, CodeGeneratingComponentRendererCodeEmitter, CodeGeneratingComponentRendererDataEmitter, CodeGeneratingComponentRendererDataEmitterItemType, CodeGeneratingComponentRendererDataEmitterPropertyType, CodeGeneratingComponentRendererHandlerEmitter, CodeGeneratingComponentRendererModuleEmitter, CodeGeneratingImportManager, CodeGeneratingRegexHelper, CodeGeneratingRendererResult, CodeGenerationContainer, CodeGenerationFolderTemplate, CodeGenerationItemBuilder, CodeGenerationItemBuilderPropertyInfo, CodeGenerationLibrary, CodeGenerationLibraryItem, CodeGenerationLibraryItemContent, CodeGenerationLibraryItemContentConfiguration, CodeGenerationLibraryItemContentLocation, CodeGenerationLibraryItemContentLocation_$type, CodeGenerationLibraryItemPlatform, CodeGenerationLibraryItemPlatform_$type, CodeGenerationLibraryItemType, CodeGenerationLibraryItemType_$type, CodeGenerationRendererAdapter, CodeGenerationRendererOptions, CodeGenerationSpecialValue, CodeGenerationSpecialValueType_$type, CodeGenerationTargetPlatforms, CodeGenerationTargetPlatforms_$type, CodeGenerationTransformer, Collection$1, CollectionAdapter, Color, ColorCollectionUtil, ColorData, ColorScaleDescription, ColorScaleDescriptionMetadata, ColorUtil, ColumnChooserDescription, ColumnChooserDescriptionMetadata, ColumnChooserDescriptionModule, ColumnComparisonFilterConditionDescription, ColumnComparisonFilterConditionDescriptionMetadata, ColumnCustomFilterConditionDescription, ColumnCustomFilterConditionDescriptionMetadata, ColumnDescription, ColumnDescriptionMetadata, ColumnExchangerDescription, ColumnExchangerDescriptionMetadata, ColumnFilterConditionDescription, ColumnFilterConditionDescriptionMetadata, ColumnFilterConditionGroupDescription, ColumnFilterConditionGroupDescriptionMetadata, ColumnFragmentDescription, ColumnFragmentDescriptionMetadata, ColumnFragmentDescriptionModule, ColumnGroupDescriptionDescription, ColumnGroupDescriptionDescriptionMetadata, ColumnGroupDescriptionDescriptionModule, ColumnGroupingDescription, ColumnGroupingDescriptionMetadata, ColumnGroupingDescriptionModule, ColumnHiddenChangedEventArgsDescription, ColumnHiddenChangedEventArgsDescriptionMetadata, ColumnMovingSeparatorDescription, ColumnMovingSeparatorDescriptionMetadata, ColumnMovingSeparatorDescriptionModule, ColumnPinnedChangedEventArgsDescription, ColumnPinnedChangedEventArgsDescriptionMetadata, ColumnPinningDescription, ColumnPinningDescriptionMetadata, ColumnPinningDescriptionModule, ColumnPropertySetterDescription, ColumnPropertySetterDescriptionMetadata, ColumnReference, ColumnResizingSeparatorDescription, ColumnResizingSeparatorDescriptionMetadata, ColumnResizingSeparatorDescriptionModule, ColumnSeriesDescription, ColumnSeriesDescriptionMetadata, ColumnSeriesDescriptionModule, ColumnSortDescriptionDescription, ColumnSortDescriptionDescriptionMetadata, ColumnSortDescriptionDescriptionModule, ColumnSummaryDescriptionDescription, ColumnSummaryDescriptionDescriptionMetadata, ColumnSummaryDescriptionDescriptionModule, ColumnSupportingCalculationDescription, ColumnSupportingCalculationDescriptionMetadata, ColumnWidthDescription, ColumnWidthDescriptionMetadata, ColumnWidthDescriptionModule, ComboBoxColumnDescription, ComboBoxColumnDescriptionMetadata, ComboBoxColumnDescriptionModule, CommodityChannelIndexIndicatorDescription, CommodityChannelIndexIndicatorDescriptionMetadata, CommodityChannelIndexIndicatorDescriptionModule, CompareInfo, CompareUtil, Comparer$1, CompletedSinkImpl, ComponentRenderer, ComponentRendererAdapter, ContainerState, ContentChildCollection, ContentControl, ContourValueResolverDescription, ContourValueResolverDescriptionMetadata, Control, ControlDisplayDensity, ControlDisplayDensity_$type, Convert, ConvertUtil, CoreGeometryUtil, CornerRadius, CountSummaryCalculator, CrosshairLayerDescription, CrosshairLayerDescriptionMetadata, CrosshairLayerDescriptionModule, CssColorPropertyAccessor, CssCornerRadiusPropertyAccessor, CssFloatPropertyAccessor, CssGradientUtil, CssHelper, CssLengthArrayPropertyAccessor, CssLengthPropertyAccessor, CssPixelsPropertyAccessor, CssThicknessPropertyAccessor, CssTransformPropertyAccessor, CultureInfo, CustomContourValueResolverDescription, CustomContourValueResolverDescriptionMetadata, CustomContourValueResolverDescriptionModule, CustomContourValueResolverEventArgsDescription, CustomContourValueResolverEventArgsDescriptionMetadata, CustomIndicatorDescription, CustomIndicatorDescriptionMetadata, CustomIndicatorDescriptionModule, CustomMapImageryDescription, CustomMapImageryDescriptionMetadata, CustomMapImageryDescriptionModule, CustomMapTileSource, CustomPaletteBrushScaleDescription, CustomPaletteBrushScaleDescriptionMetadata, CustomPaletteBrushScaleDescriptionModule, CustomPaletteColorScaleDescription, CustomPaletteColorScaleDescriptionMetadata, CustomPaletteColorScaleDescriptionModule, DOMEventProxy, DOMExecutionContext, DTDObjectModel, DVContainer, DVInteractivityDescriptionModule, DVSR, DataAbbreviationMode, DataAbbreviationMode_$type, DataBindingEventArgsDescription, DataBindingEventArgsDescriptionMetadata, DataChartAnnotationDescriptionModule, DataChartCategoryCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartCategoryTrendLineDescriptionModule, DataChartCoreDescriptionModule, DataChartDefaultTooltipsDescriptionMetadata, DataChartDefaultTooltipsExtendedDescriptionMetadata, DataChartDescription, DataChartDescriptionMetadata, DataChartExtendedAxesDescriptionModule, DataChartFinancialCoreDescriptionModule, DataChartFinancialDescriptionModule, DataChartFinancialIndicatorsDescriptionModule, DataChartFinancialOverlaysDescriptionModule, DataChartInteractivityDescriptionModule, DataChartMouseButtonEventArgsDescription, DataChartMouseButtonEventArgsDescriptionMetadata, DataChartPolarCoreDescriptionModule, DataChartPolarDescriptionModule, DataChartRadialCoreDescriptionModule, DataChartRadialDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartShapeCoreDescriptionModule, DataChartShapeDescriptionModule, DataChartStackedDescriptionModule, DataChartVerticalCategoryCoreDescriptionModule, DataChartVerticalCategoryDescriptionModule, DataChartVisualDataDescriptionModule, DataContext, DataContextDescription, DataContextDescriptionMetadata, DataFormats, DataGridAllColumnsDescriptionModule, DataGridComparisonOperatorSelectorDescription, DataGridComparisonOperatorSelectorDescriptionMetadata, DataGridCoreDescriptionModule, DataGridDescription, DataGridDescriptionMetadata, DataGridDescriptionModule, DataGridExpansionIndicatorDescription, DataGridExpansionIndicatorDescriptionMetadata, DataGridFilterDialogDescription, DataGridFilterDialogDescriptionMetadata, DataGridPagerDescription, DataGridPagerDescriptionMetadata, DataGridPagerDescriptionModule, DataGridSortIndicatorDescription, DataGridSortIndicatorDescriptionMetadata, DataGridToolbarDescription, DataGridToolbarDescriptionMetadata, DataGridToolbarDescriptionModule, DataLegendDescription, DataLegendDescriptionMetadata, DataLegendDescriptionModule, DataLegendHeaderDateMode, DataLegendHeaderDateMode_$type, DataLegendHeaderTimeMode, DataLegendHeaderTimeMode_$type, DataLegendLabelMode, DataLegendLabelMode_$type, DataLegendSeriesContext, DataLegendSeriesContextDescription, DataLegendSeriesContextDescriptionMetadata, DataLegendSeriesGroup, DataLegendSeriesGroup_$type, DataLegendSeriesValueInfo, DataLegendSeriesValueInfoDescription, DataLegendSeriesValueInfoDescriptionMetadata, DataLegendSeriesValueType, DataLegendSeriesValueType_$type, DataLegendStylingColumnEventArgsDescription, DataLegendStylingColumnEventArgsDescriptionMetadata, DataLegendStylingRowEventArgsDescription, DataLegendStylingRowEventArgsDescriptionMetadata, DataLegendSummaryColumn, DataLegendSummaryColumnDescription, DataLegendSummaryColumnDescriptionMetadata, DataLegendSummaryEventArgsDescription, DataLegendSummaryEventArgsDescriptionMetadata, DataLegendSummaryType, DataLegendSummaryType_$type, DataLegendUnitsMode, DataLegendUnitsMode_$type, DataLegendValueMode, DataLegendValueMode_$type, DataObject, DataSeries, DataSeriesAdapter, DataSeriesAdapterImplementation, DataSeriesAdapterRemovingDuplicatesEventArgs, DataSeriesAdapterRuleCollection, DataSeriesAdapterRunContext, DataSeriesAdapterRunEventArgs, DataSeriesAdapterUpdateNotifier, DataSeriesAxisType, DataSeriesAxisType_$type, DataSeriesCollection, DataSeriesDataProviderAnalyzer, DataSeriesIntent, DataSeriesIntent_$type, DataSeriesMarker, DataSeriesMarker_$type, DataSeriesMemberPathHint, DataSeriesType, DataSeriesType_$type, DataSourceAggregatedResult, DataSourceAggregatedResultDescription, DataSourceAggregatedResultDescriptionMetadata, DataSourceBatchCompletedEventArgs, DataSourceBatchStartedEventArgs, DataSourceDataCommittedEventArgs, DataSourceDataProviderSchemaChangedEventArgs, DataSourceDataProviderSchemaChangedEventArgsDescription, DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata, DataSourceExecutionContext, DataSourceLocalDataProvider, DataSourcePageRequestPriority, DataSourcePageRequestPriority_$type, DataSourcePropertiesComparer, DataSourceRowExpansionChangedEventArgs, DataSourceRowExpansionChangedEventArgsDescription, DataSourceRowExpansionChangedEventArgsDescriptionMetadata, DataSourceRowType, DataSourceRowType_$type, DataSourceSchemaChangedEventArgs, DataSourceSchemaChangedEventArgsDescription, DataSourceSchemaChangedEventArgsDescriptionMetadata, DataSourceSchemaPropertyType, DataSourceSchemaPropertyType_$type, DataSourceSectionHeaderDisplayMode, DataSourceSectionHeaderDisplayMode_$type, DataSourceSpecialRow, DataSourceSpecialRowDescription, DataSourceSpecialRowDescriptionMetadata, DataSourceSummaryScope, DataSourceSummaryScope_$type, DataSourceSupportingCalculationDescription, DataSourceSupportingCalculationDescriptionMetadata, DataSourceVelocityReading, DataSourceVelocityTracker, DataTemplate, DataTemplateMeasureInfo, DataTemplatePassInfo, DataTemplateRenderInfo, DataToolTipLayerDescription, DataToolTipLayerDescriptionMetadata, DataToolTipLayerDescriptionModule, DataToolTipLayerGroupingMode, DataToolTipLayerGroupingMode_$type, DataTooltipGroupedPositionX, DataTooltipGroupedPositionX_$type, DataTooltipGroupedPositionY, DataTooltipGroupedPositionY_$type, DataVisualizationLocaleCs, DataVisualizationLocaleDa, DataVisualizationLocaleDe, DataVisualizationLocaleEn, DataVisualizationLocaleEs, DataVisualizationLocaleFr, DataVisualizationLocaleHu, DataVisualizationLocaleIt, DataVisualizationLocaleJa, DataVisualizationLocaleKo, DataVisualizationLocaleNb, DataVisualizationLocaleNl, DataVisualizationLocalePl, DataVisualizationLocalePt, DataVisualizationLocaleRo, DataVisualizationLocaleSv, DataVisualizationLocaleTr, DataVisualizationLocaleZhHans, DataVisualizationLocaleZhHant, DatePickerDescription, DatePickerDescriptionMetadata, DatePickerDescriptionModule, DateRangeDescriptorDescription, DateRangeDescriptorDescriptionMetadata, DateTimeCellInfoDescription, DateTimeCellInfoDescriptionMetadata, DateTimeColumnDescription, DateTimeColumnDescriptionMetadata, DateTimeColumnDescriptionModule, DateTimeFormat, DateTimeFormatSpecifier, DateTimeFormatSpecifierDescription, DateTimeFormatSpecifierDescriptionMetadata, DateTimeFormatSpecifierDescriptionModule, DateTimeKind_$type, Date_$type, DayOfWeek, DayOfWeek_$type, Debug, Decoder, DecoderExceptionFallback, DecoderExceptionFallbackBuffer, DecoderFallback, DecoderFallbackBuffer, DecoderFallbackException, DecoderReplacementFallback, DecoderReplacementFallbackBuffer, DefaultComparer$1, DefaultDataSourceDataProviderUpdateNotifier, DefaultDataSourceSchema, DefaultDecoder, DefaultEqualityComparer$1, DefaultODataLiteralEmitter, DefaultSectionInformation, DefaultSummaryResult, DefinitionBaseDescription, DefinitionBaseDescriptionMetadata, Delegate_$type, DependencyObject, DependencyObjectNotifier, DependencyPropertiesCollection, DependencyProperty, DependencyPropertyChangedEventArgs, Description, DescriptionJsonValidator, DescriptionPropertyValue, DescriptionRef, DescriptionRefValueChangedEventArgs, DescriptionResult, DescriptionSerializer, DescriptionSerializerBuilder, DescriptionTreeAction, DescriptionTreeActionType_$type, DescriptionTreeBuilder, DescriptionTreeNode, DescriptionTreeReconciler, DescriptionTreeReconciler_TreeModeData, DetrendedPriceOscillatorIndicatorDescription, DetrendedPriceOscillatorIndicatorDescriptionMetadata, DetrendedPriceOscillatorIndicatorDescriptionModule, DeviceUtils, Dictionary$2, DictionaryUtil, Dictionary_EnumerableCollection$3, DiffApplyInfo, DivBridge, DomPortal_$type, DomRenderer_$type, DomWrapper_$type, DomainChartDescription, DomainChartDescriptionMetadata, DomainChartSeriesPointerEventArgsDescription, DomainChartSeriesPointerEventArgsDescriptionMetadata, DotNetCodeGeneratingComponentRendererDataEmitter, DotNetCodeGeneratingComponentRendererHandlerEmitter, DotNetCodeGeneratingComponentRendererModuleEmitter, DoubleAnimator, DoubleCollection, DoubleValueChangedEventArgs, DoubleValueChangedEventArgsDescription, DoubleValueChangedEventArgsDescriptionMetadata, DoughnutChartCoreDescriptionModule, DoughnutChartDefaultTooltipsDescriptionMetadata, DoughnutChartDefaultTooltipsExtendedDescriptionMetadata, DoughnutChartDescription, DoughnutChartDescriptionMetadata, DoughnutChartDescriptionModule, DoughnutChartInteractivityDescriptionModule, DownloadingMultiScaleImageEventArgs, DownloadingMultiScaleImageEventArgsDescription, DownloadingMultiScaleImageEventArgsDescriptionMetadata, EaseOfMovementIndicatorDescription, EaseOfMovementIndicatorDescriptionMetadata, EaseOfMovementIndicatorDescriptionModule, EasingFunctions, EdgeClipper, EdgeComparer, EditRowDefinitionDescription, EditRowDefinitionDescriptionMetadata, EditRowDefinitionDescriptionModule, EditorCellInfoDescription, EditorCellInfoDescriptionMetadata, EditorDefinitionDescription, EditorDefinitionDescriptionMetadata, EditorDefinitionDescriptionModule, EditorRowCellInfoDescription, EditorRowCellInfoDescriptionMetadata, ElevationHelper, ElevationMode, ElevationMode_$type, EllipseGeometry, EllipseGeometryData, EmbeddedRefDescription, Encoding, EntityHandling, EntityHandling_$type, Enum, EnumUtil, Enumerable, EnumerableWrapper, EnumerableWrapperObject, EnumeratorWrapper, EnumeratorWrapperObject, Environment, EqualityComparer$1, ErrorBarCalculatorReference, ErrorBarCalculatorReference_$type, ErrorBarCalculatorType, ErrorBarCalculatorType_$type, ErrorMessageDisplayingEventArgs, EventArgs, EventProxy, ExpansionPanelDescription, ExpansionPanelDescriptionMetadata, ExpansionPanelDescriptionModule, ExpressionSyntax, Extensions, FastFlattener, FastItemColumn, FastItemDateTimeColumn, FastItemIntColumn, FastItemObjectColumn, FastItemsSource, FastItemsSourceEventAction, FastItemsSourceEventAction_$type, FastItemsSourceEventArgs, FastItemsSourceReference, FastIterationDictionary$2, FastReflectionHelper, FastStochasticOscillatorIndicatorDescription, FastStochasticOscillatorIndicatorDescriptionMetadata, FastStochasticOscillatorIndicatorDescriptionModule, FaultCode, FaultException, FaultException$1, FaultReason, FillRule, FillRule_$type, FilterApplyButtonClickEventArgsDescription, FilterApplyButtonClickEventArgsDescriptionMetadata, FilterCancelButtonClickEventArgsDescription, FilterCancelButtonClickEventArgsDescriptionMetadata, FilterCellInfoDescription, FilterCellInfoDescriptionMetadata, FilterDialogRenderCompletedEventArgsDescription, FilterDialogRenderCompletedEventArgsDescriptionMetadata, FilterExpression, FilterExpressionCollection, FilterExpressionDescription, FilterExpressionDescriptionMetadata, FilterExpressionFunctionType, FilterExpressionFunctionType_$type, FilterExpressionOperatorType, FilterExpressionOperatorType_$type, FilterExpressionVisitor, FilterExpressionWrapperType, FilterExpressionWrapperType_$type, FilterFactory, FilterOperandDescription, FilterOperandDescriptionMetadata, FilterOperandDescriptionModule, FilterRowDefinitionDescription, FilterRowDefinitionDescriptionMetadata, FilterRowDefinitionDescriptionModule, FinalValueLayerDescription, FinalValueLayerDescriptionMetadata, FinalValueLayerDescriptionModule, FinancialCalculationDataSourceDescription, FinancialCalculationDataSourceDescriptionMetadata, FinancialCalculationSupportingCalculationsDescription, FinancialCalculationSupportingCalculationsDescriptionMetadata, FinancialChartCoreDescriptionModule, FinancialChartCustomIndicatorArgsDescription, FinancialChartCustomIndicatorArgsDescriptionMetadata, FinancialChartDefaultTemplatesDescriptionMetadata, FinancialChartDefaultTemplatesExtendedDescriptionMetadata, FinancialChartDescription, FinancialChartDescriptionMetadata, FinancialChartDescriptionModule, FinancialDataAdapter, FinancialEventArgsDescription, FinancialEventArgsDescriptionMetadata, FinancialIndicatorDescription, FinancialIndicatorDescriptionMetadata, FinancialLegendDescription, FinancialLegendDescriptionMetadata, FinancialLegendDescriptionModule, FinancialOverlayDescription, FinancialOverlayDescriptionMetadata, FinancialPriceSeriesDescription, FinancialPriceSeriesDescriptionMetadata, FinancialPriceSeriesDescriptionModule, FinancialSeriesDescription, FinancialSeriesDescriptionMetadata, Flattener, FlattenerSettings, FocusOptionsDescription, FocusOptionsDescriptionMetadata, FontDefaults, FontInfo, FontUtil, ForceIndexIndicatorDescription, ForceIndexIndicatorDescriptionMetadata, ForceIndexIndicatorDescriptionModule, FormatException, FormatException2, FormatGroupTextEventArgsDescription, FormatGroupTextEventArgsDescriptionMetadata, FormatLinearGraphLabelEventArgsDescription, FormatLinearGraphLabelEventArgsDescriptionMetadata, FormatRadialGaugeLabelEventArgsDescription, FormatRadialGaugeLabelEventArgsDescriptionMetadata, FormatSpecifier, FormatSpecifierCollection, FormatSpecifierDescription, FormatSpecifierDescriptionMetadata, FormatSpecifierDescriptionModule, FormatSummaryTextEventArgsDescription, FormatSummaryTextEventArgsDescriptionMetadata, Formatting, Formatting_$type, FragmentBaseDescription, FragmentBaseDescriptionMetadata, FrameworkElement, FrameworkElementExtensions, FullStochasticOscillatorIndicatorDescription, FullStochasticOscillatorIndicatorDescriptionMetadata, FullStochasticOscillatorIndicatorDescriptionModule, FunctionFilterExpression, FunctionFilterExpressionDescription, FunctionFilterExpressionDescriptionMetadata, FunnelChartCoreDescriptionModule, FunnelChartDescription, FunnelChartDescriptionMetadata, FunnelChartDescriptionModule, FunnelDataContextDescription, FunnelDataContextDescriptionMetadata, FunnelSliceClickedEventArgsDescription, FunnelSliceClickedEventArgsDescriptionMetadata, FunnelSliceDataContextDescription, FunnelSliceDataContextDescriptionMetadata, FunnelSliceEventArgsDescription, FunnelSliceEventArgsDescriptionMetadata, GC, GenericEnumerable$1, GenericEnumerator$1, GeographicContourLineSeriesDescription, GeographicContourLineSeriesDescriptionMetadata, GeographicContourLineSeriesDescriptionModule, GeographicHighDensityScatterSeriesDescription, GeographicHighDensityScatterSeriesDescriptionMetadata, GeographicHighDensityScatterSeriesDescriptionModule, GeographicMapCoreDescriptionModule, GeographicMapDescription, GeographicMapDescriptionMetadata, GeographicMapDescriptionModule, GeographicMapImageryDescription, GeographicMapImageryDescriptionMetadata, GeographicMapSeriesHostDescription, GeographicMapSeriesHostDescriptionMetadata, GeographicMarkerSeriesBaseDescription, GeographicMarkerSeriesBaseDescriptionMetadata, GeographicMarkerSeriesDescription, GeographicMarkerSeriesDescriptionMetadata, GeographicPolylineSeriesDescription, GeographicPolylineSeriesDescriptionMetadata, GeographicPolylineSeriesDescriptionModule, GeographicProportionalSymbolSeriesBaseDescription, GeographicProportionalSymbolSeriesBaseDescriptionMetadata, GeographicProportionalSymbolSeriesDescription, GeographicProportionalSymbolSeriesDescriptionMetadata, GeographicProportionalSymbolSeriesDescriptionModule, GeographicScatterAreaSeriesDescription, GeographicScatterAreaSeriesDescriptionMetadata, GeographicScatterAreaSeriesDescriptionModule, GeographicShapeSeriesBaseBaseDescription, GeographicShapeSeriesBaseBaseDescriptionMetadata, GeographicShapeSeriesBaseDescription, GeographicShapeSeriesBaseDescriptionMetadata, GeographicShapeSeriesDescription, GeographicShapeSeriesDescriptionMetadata, GeographicShapeSeriesDescriptionModule, GeographicSymbolSeriesBaseDescription, GeographicSymbolSeriesBaseDescriptionMetadata, GeographicSymbolSeriesDescription, GeographicSymbolSeriesDescriptionMetadata, GeographicSymbolSeriesDescriptionModule, GeographicTileSeriesDescription, GeographicTileSeriesDescriptionMetadata, GeographicTileSeriesDescriptionModule, GeographicXYTriangulatingSeriesBaseDescription, GeographicXYTriangulatingSeriesBaseDescriptionMetadata, GeographicXYTriangulatingSeriesDescription, GeographicXYTriangulatingSeriesDescriptionMetadata, Geometry, GeometryCollection, GeometryData, GeometryGroup, GeometryType, GeometryType_$type, GeometryUtil, GetPointsSettings, GetTileImageUriArgs, GetTileImageUriArgsDescription, GetTileImageUriArgsDescriptionMetadata, GotFocusEventArgsDescription, GotFocusEventArgsDescriptionMetadata, GradientDirection, GradientDirection_$type, GradientStop, GradientStopAppearanceData, GridActiveCellChangedEventArgsDescription, GridActiveCellChangedEventArgsDescriptionMetadata, GridAnimationPhaseSettingsDescription, GridAnimationPhaseSettingsDescriptionMetadata, GridAnimationSettingsDescription, GridAnimationSettingsDescriptionMetadata, GridBridge, GridBridgeColumnDefinition, GridBridgeRowDefinition, GridCellEditEndedEventArgsDescription, GridCellEditEndedEventArgsDescriptionMetadata, GridCellEditEventArgsDescription, GridCellEditEventArgsDescriptionMetadata, GridCellEditStartedEventArgsDescription, GridCellEditStartedEventArgsDescriptionMetadata, GridCellEventArgsDescription, GridCellEventArgsDescriptionMetadata, GridCellPositionDescription, GridCellPositionDescriptionMetadata, GridCellPositionDescriptionModule, GridCellValueChangedEventArgsDescription, GridCellValueChangedEventArgsDescriptionMetadata, GridCellValueChangingEventArgsDescription, GridCellValueChangingEventArgsDescriptionMetadata, GridColumnAnimationSettingsDescription, GridColumnAnimationSettingsDescriptionMetadata, GridColumnButtonOptionsDescription, GridColumnButtonOptionsDescriptionMetadata, GridColumnButtonOptionsDescriptionModule, GridColumnFilterOptionsDescription, GridColumnFilterOptionsDescriptionMetadata, GridColumnFilterOptionsDescriptionModule, GridColumnGroupOptionsDescription, GridColumnGroupOptionsDescriptionMetadata, GridColumnGroupOptionsDescriptionModule, GridColumnHideOptionsDescription, GridColumnHideOptionsDescriptionMetadata, GridColumnHideOptionsDescriptionModule, GridColumnMoveOptionsDescription, GridColumnMoveOptionsDescriptionMetadata, GridColumnMoveOptionsDescriptionModule, GridColumnOptionsBaseDescription, GridColumnOptionsBaseDescriptionMetadata, GridColumnOptionsDescription, GridColumnOptionsDescriptionMetadata, GridColumnOptionsDescriptionModule, GridColumnOptionsSectionBaseDescription, GridColumnOptionsSectionBaseDescriptionMetadata, GridColumnOptionsSimpleSectionBaseDescription, GridColumnOptionsSimpleSectionBaseDescriptionMetadata, GridColumnPinOptionsDescription, GridColumnPinOptionsDescriptionMetadata, GridColumnPinOptionsDescriptionModule, GridColumnSortOptionsDescription, GridColumnSortOptionsDescriptionMetadata, GridColumnSortOptionsDescriptionModule, GridColumnSummaryOptionsDescription, GridColumnSummaryOptionsDescriptionMetadata, GridColumnSummaryOptionsDescriptionModule, GridColumnWidthChangedEventArgsDescription, GridColumnWidthChangedEventArgsDescriptionMetadata, GridColumnsAutoGeneratedEventArgsDescription, GridColumnsAutoGeneratedEventArgsDescriptionMetadata, GridColumnsChangedEventArgsDescription, GridColumnsChangedEventArgsDescriptionMetadata, GridCommitCompletedEventArgsDescription, GridCommitCompletedEventArgsDescriptionMetadata, GridCustomFilterRequestedEventArgsDescription, GridCustomFilterRequestedEventArgsDescriptionMetadata, GridDataCommittedEventArgsDescription, GridDataCommittedEventArgsDescriptionMetadata, GridDataCommittingEventArgsDescription, GridDataCommittingEventArgsDescriptionMetadata, GridFilterDialogFilterChangeEventArgsDescription, GridFilterDialogFilterChangeEventArgsDescriptionMetadata, GridFilterDialogOpeningEventArgsDescription, GridFilterDialogOpeningEventArgsDescriptionMetadata, GridFilterDialogViewModelDescription, GridFilterDialogViewModelDescriptionMetadata, GridFilterDialogViewModelGroupingDescription, GridFilterDialogViewModelGroupingDescriptionMetadata, GridFilterDialogViewModelRowDescription, GridFilterDialogViewModelRowDescriptionMetadata, GridFilterExpressionsEventArgsDescription, GridFilterExpressionsEventArgsDescriptionMetadata, GridGroupDescriptionsChangedEventArgsDescription, GridGroupDescriptionsChangedEventArgsDescriptionMetadata, GridRowEditEndedEventArgsDescription, GridRowEditEndedEventArgsDescriptionMetadata, GridRowEditStartedEventArgsDescription, GridRowEditStartedEventArgsDescriptionMetadata, GridSelectedCellRangesChangedEventArgsDescription, GridSelectedCellRangesChangedEventArgsDescriptionMetadata, GridSelectedCellsChangedEventArgsDescription, GridSelectedCellsChangedEventArgsDescriptionMetadata, GridSelectedItemsChangedEventArgsDescription, GridSelectedItemsChangedEventArgsDescriptionMetadata, GridSelectedKeysChangedEventArgsDescription, GridSelectedKeysChangedEventArgsDescriptionMetadata, GridSelectionChangedEventArgsDescription, GridSelectionChangedEventArgsDescriptionMetadata, GridSizeChangedEventArgsDescription, GridSizeChangedEventArgsDescriptionMetadata, GridSortDescriptionsChangedEventArgsDescription, GridSortDescriptionsChangedEventArgsDescriptionMetadata, GridSummaryDescriptionsChangedEventArgsDescription, GridSummaryDescriptionsChangedEventArgsDescriptionMetadata, Group, GroupCollection, GroupDataDescription, GroupDataDescriptionMetadata, Guid, Guid_GuidParseThrowStyle_$type, Guid_GuidResult, Guid_GuidStyles_$type, Guid_ParseFailureKind_$type, HalfEdge, HalfEdgeSet, HashPool$2, HashSet$1, Hashtable, Header, HeaderDescription, HeaderDescriptionMetadata, HeaderRowSeparatorDescription, HeaderRowSeparatorDescriptionMetadata, HeaderRowSeparatorDescriptionModule, HeaderSeparatorDescription, HeaderSeparatorDescriptionMetadata, HeaderSeparatorDescriptionModule, HeatTileGenerator, HeatTileGeneratorDescription, HeatTileGeneratorDescriptionMetadata, HeatTileGeneratorDescriptionModule, HeatTileGeneratorWebWorker, HeatTileGeneratorWorker, HeatTileGeneratorWorkerManager, HeatTileImageCreatedEventArgs, HeatTileScaler, HierarchicalRingSeriesDescription, HierarchicalRingSeriesDescriptionMetadata, HierarchicalRingSeriesDescriptionModule, HighDensityScatterSeriesDescription, HighDensityScatterSeriesDescriptionMetadata, HighDensityScatterSeriesDescriptionModule, HighlightingInfoDescription, HighlightingInfoDescriptionMetadata, HoleDimensionsChangedEventArgsDescription, HoleDimensionsChangedEventArgsDescriptionMetadata, HorizontalAlignment, HorizontalAlignment_$type, HorizontalAnchoredCategorySeriesDescription, HorizontalAnchoredCategorySeriesDescriptionMetadata, HorizontalAnchoredCategorySeriesProxyDescriptionModule, HorizontalRangeCategorySeriesDescription, HorizontalRangeCategorySeriesDescriptionMetadata, HorizontalRangeCategorySeriesProxyDescriptionModule, HorizontalStackedSeriesBaseDescription, HorizontalStackedSeriesBaseDescriptionMetadata, HttpRequestUtil, IArrayList_$type, IArray_$type, IChartItemLegend_$type, IChartLegend_$type, IChartScaleLegend_$type, ICodeGenerationRendererTemplate_$type, ICollection$1_$type, ICollection_$type, IComparable$1_$type, IComparable_$type, IComparer$1_$type, IComparer_$type, IComponentRendererAdapter_$type, IConvertible_$type, ICredentials_$type, IDataLegendSeries_$type, IDataLegendTarget_$type, IDataLegend_$type, IDataObject_$type, IDataSeriesAdapterRule_$type, IDataSourceDataProviderUpdateNotifier_$type, IDataSourceDataProvider_$type, IDataSourceExecutionContext_$type, IDataSourceLocalDataProvider_$type, IDataSourcePage_$type, IDataSourceSchema_$type, IDataSourceSupportsCount_$type, IDataSourceSupportsIndexedAccess_$type, IDataSourceUpdateNotifier_$type, IDataSourceVirtualDataProvider_$type, IDataSource_$type, IDependentRenderer_$type, IDictionary$2_$type, IDictionary_$type, IDisposable_$type, IEasingFunction_$type, IEditableDataSource_$type, IEnumerable$1_$type, IEnumerable_$type, IEnumerator$1_$type, IEnumerator_$type, IEqualityComparer$1_$type, IEqualityComparer_$type, IEquatable$1_$type, IErrorBarCalculator_$type, IExecutionContext_$type, IExternalDataSeriesAdapter_$type, IExternalDataSource_$type, IExternalLocalDataSource_$type, IExternalVirtualDataSource_$type, IFastItemColumn$1_$type, IFastItemColumnInternal_$type, IFastItemColumnPropertyName_$type, IFastItemsSourceProvider_$type, IFastItemsSource_$type, IFilterExpression_$type, IFormatProvider_$type, IFormattable_$type, IFunctionFilterExpression_$type, IGetItemAtIndex_$type, IGrouping$2_$type, IHashPool$2_$type, IIcon_$type, IIndexedPool$1_$type, IInternalLegendOwner_$type, IKeyFrameAnimation_$type, ILegendContext_$type, ILegendOwner_$type, ILegendSeriesInternal_$type, ILegendSeries_$type, ILegendTemplateProvider_$type, IList$1_$type, IList_$type, ILiteralFilterExpression_$type, IMapRenderDeferralHandler_$type, INativeUIContainerBridge_$type, INativeUIContentBridge_$type, INativeUIElementBridge_$type, INativeUIElementFactory_$type, INativeUIGridBridge_$type, INotifyCollectionChanged_$type, INotifyPropertyChanged_$type, IOPath, IOnDemandRender_$type, IOperationFilterExpression_$type, IOrderedEnumerable$1_$type, IOverviewPlusDetailControl_$type, IOverviewPlusDetailPane_$type, IPageCandidatesSink_$type, IPermission_$type, IPool$1_$type, IPropertyReferenceFilterExpression_$type, IQueryProvider_$type, IQueryable$1_$type, IQueryable_$type, IRenderer_$type, IScaleLegendSeries_$type, ISchedulableRender_$type, IScrollerKeyboardListener_$type, IScrollerView_$type, ISectionInformation_$type, ISmartPlaceable_$type, ISummaryResult_$type, ISupportsDataChangeNotifications_$type, ISupportsExpansionChangeNotifications_$type, ITickProvider_$type, ITileGenerator_$type, ITileWorkCompletedSink_$type, ITypeDescriptionPropertyTransforms_$type, IUnknownValuePlotting_$type, IVisualData_$type, IXmlLineInfo_$type, IXmlNamespaceResolver_$type, IZoomSlider_$type, IconDescription, IconDescriptionMetadata, IconDescriptionModule, IgCollection, IgEvent, IgcButtonBridge, IgcCheckboxBridge, IgcDropdownBridge, IgcInputBridge, IgcSliderBridge, IgxAsyncCompletedEventArgs, IgxCancelEventArgs, IgxCancellingMultiScaleImageEventArgs, IgxChildContentComponent, IgxChildContentDynamicModule, IgxChildContentModule, IgxComponentRendererContainerComponent, IgxComponentRendererContainerModule, IgxContentChildCollection, IgxDVInteractivityDynamicModule, IgxDVInteractivityModule, IgxDataContext, IgxDataLegendSeriesContext, IgxDataLegendSeriesValueInfo, IgxDataLegendSummaryColumn, IgxDataSeriesCollection, IgxDataSourceDataProviderSchemaChangedEventArgs, IgxDataSourceRowExpansionChangedEventArgs, IgxDataSourceSchemaChangedEventArgs, IgxDataVisualizationLocaleCsModule, IgxDataVisualizationLocaleDaModule, IgxDataVisualizationLocaleDeModule, IgxDataVisualizationLocaleEnModule, IgxDataVisualizationLocaleEsModule, IgxDataVisualizationLocaleFrModule, IgxDataVisualizationLocaleHuModule, IgxDataVisualizationLocaleItModule, IgxDataVisualizationLocaleJaModule, IgxDataVisualizationLocaleKoModule, IgxDataVisualizationLocaleNbModule, IgxDataVisualizationLocaleNlModule, IgxDataVisualizationLocalePlModule, IgxDataVisualizationLocalePtModule, IgxDataVisualizationLocaleRoModule, IgxDataVisualizationLocaleSvModule, IgxDataVisualizationLocaleTrModule, IgxDataVisualizationLocaleZhHansModule, IgxDataVisualizationLocaleZhHantModule, IgxDateTimeFormatSpecifier, IgxDateTimeFormatSpecifierDynamicModule, IgxDateTimeFormatSpecifierModule, IgxDoubleValueChangedEventArgs, IgxDownloadingMultiScaleImageEventArgs, IgxFilterExpressionCollection, IgxFormatSpecifier, IgxFormatSpecifierCollection, IgxFormatSpecifierDynamicModule, IgxFormatSpecifierModule, IgxGetTileImageUriArgs, IgxHeatTileGenerator, IgxHeatTileGeneratorDynamicModule, IgxHeatTileGeneratorModule, IgxKeyEventArgs, IgxLocalDataSourceDynamicModule, IgxLocalDataSourceModule, IgxNumberFormatSpecifier, IgxNumberFormatSpecifierDynamicModule, IgxNumberFormatSpecifierModule, IgxObjectCollection, IgxPropertyUpdatedEventArgs, IgxProvideCalculatorEventArgs, IgxRectChangedEventArgs, IgxShapeDataSource, IgxShapeDataSourceDynamicModule, IgxShapeDataSourceModule, IgxShapeFilterRecordEventArgs, IgxShapefileRecord, IgxSimpleDefaultTooltipComponent, IgxStockChangedEventArgs, IgxStyle, IgxTemplateContentComponent, IgxTemplateContentDynamicModule, IgxTemplateContentModule, IgxTooltipContainerComponent, IgxTooltipContainerDynamicModule, IgxTooltipContainerModule, IgxTransactionState, IgxTriangulationDataSource, IgxTriangulationStatusEventArgs, IgxUploadDataCompletedEventArgs, IgxUploadStringCompletedEventArgs, Image, ImageCellInfoDescription, ImageCellInfoDescriptionMetadata, ImageColumnDescription, ImageColumnDescriptionMetadata, ImageColumnDescriptionModule, ImageTilesReadyEventArgsDescription, ImageTilesReadyEventArgsDescriptionMetadata, ImagesChangedEventArgsDescription, ImagesChangedEventArgsDescriptionMetadata, IndexOutOfRangeException, IndicatorProxyDescriptionModule, IndicatorsDescriptionModule, InputChangeEventArgsDescription, InputChangeEventArgsDescriptionMetadata, InputDescription, InputDescriptionMetadata, InputDescriptionModule, InputGroupDescription, InputGroupDescriptionMetadata, InputGroupDescriptionModule, InputGroupItemDescription, InputGroupItemDescriptionMetadata, InteractionState, InteractionState_$type, InterpolationMode, InterpolationMode_$type, InterpolationUtil, InvalidOperationException, ItemLegendDescription, ItemLegendDescriptionMetadata, ItemLegendDescriptionModule, ItemToolTipLayerDescription, ItemToolTipLayerDescriptionMetadata, ItemToolTipLayerDescriptionModule, ItemwiseStrategyBasedIndicatorDescription, ItemwiseStrategyBasedIndicatorDescriptionMetadata, IterableWrapper, IteratorWrapper, ItfConverter, JavaScriptSerializer, JsonDictionaryArray, JsonDictionaryItem, JsonDictionaryObject, JsonDictionaryParser, JsonDictionaryValue, JsonDictionaryValueType_$type, JsonWriter, Key, KeyEventArgs, KeyEventArgsDescription, KeyEventArgsDescriptionMetadata, KeyFrameAnimationDirect, KeyFrameAnimationEffectPhase_$type, KeyFrameAnimationFactory, KeyFrameAnimationFill_$type, KeyFrameAnimationPlayState_$type, KeyFrameAnimationTimeline, KeyFrameEffectEasing_$type, KeyFrameEffectTimingDirection_$type, KeyValuePair$2, Key_$type, LRUCache$2, LRUCacheItem$2, LabelAppearanceData, LabelAppearanceDataList, LabelClickEventArgsDescription, LabelClickEventArgsDescriptionMetadata, LabelCollisionInfo, LabelCollisionManager, LabelCollisionManagerCollisionMode_$type, LabelCollisionPlacementPositions_$type, LabelDescription, LabelDescriptionMetadata, LabelDescriptionModule, LambdaExpression, LastMonthExpression, LastMonthExpressionDescription, LastMonthExpressionDescriptionMetadata, LastQuarterExpression, LastQuarterExpressionDescription, LastQuarterExpressionDescriptionMetadata, LastWeekExpression, LastWeekExpressionDescription, LastWeekExpressionDescriptionMetadata, LastYearExpression, LastYearExpressionDescription, LastYearExpressionDescriptionMetadata, LeastSquaresFit, LeftClipper, LegendBaseDescription, LegendBaseDescriptionMetadata, LegendDescription, LegendDescriptionMetadata, LegendDescriptionModule, LegendItemBadgeMode, LegendItemBadgeMode_$type, LegendItemBadgeShape, LegendItemBadgeShape_$type, LegendItemHelper, LegendMouseButtonEventArgsDescription, LegendMouseButtonEventArgsDescriptionMetadata, LegendMouseEventArgsDescription, LegendMouseEventArgsDescriptionMetadata, Line, LineFragmentDescription, LineFragmentDescriptionMetadata, LineFragmentDescriptionModule, LineGeometry, LineGeometryData, LineSegment, LineSegmentData, LineSeriesDescription, LineSeriesDescriptionMetadata, LineSeriesDescriptionModule, LineVisualData, LinearContourValueResolverDescription, LinearContourValueResolverDescriptionMetadata, LinearContourValueResolverDescriptionModule, LinearGaugeCoreDescriptionModule, LinearGaugeDescription, LinearGaugeDescriptionMetadata, LinearGaugeDescriptionModule, LinearGradientBrush, LinearGradientBrushAppearanceData, LinearGraphRangeDescription, LinearGraphRangeDescriptionMetadata, LinearGraphRangeDescriptionModule, LinkedList$1, LinkedListNode$1, List$1, ListSortDirection, ListSortDirection_$type, LiteralFilterExpression, LiteralFilterExpressionDescription, LiteralFilterExpressionDescriptionMetadata, LocalDataSource, LocalDataSourceDescription, LocalDataSourceDescriptionMetadata, LocalDataSourceDescriptionModule, LocalDataSourceViewExpansionNotifier, LocalDataSourceViewUpdateNotifier, Locale, Localization, LostFocusEventArgsDescription, LostFocusEventArgsDescriptionMetadata, MapTileSource, MarkerSeriesDescription, MarkerSeriesDescriptionMetadata, MarketFacilitationIndexIndicatorDescription, MarketFacilitationIndexIndicatorDescriptionMetadata, MarketFacilitationIndexIndicatorDescriptionModule, MarshalByRefObject, MassIndexIndicatorDescription, MassIndexIndicatorDescriptionMetadata, MassIndexIndicatorDescriptionModule, Match, Matcher, MathUtil, MathUtilExtended, Matrix, MatrixTransform, MaxSummaryCalculator, MedianPriceIndicatorDescription, MedianPriceIndicatorDescriptionMetadata, MedianPriceIndicatorDescriptionModule, MemberExpression, MemoryStream, MethodCallExpression, MinSummaryCalculator, ModifierKeys, ModifierKeys_$type, MoneyFlowIndexIndicatorDescription, MoneyFlowIndexIndicatorDescriptionMetadata, MoneyFlowIndexIndicatorDescriptionModule, MouseButton, MouseButtonEventArgs, MouseButton_$type, MouseEventArgs, MovingAverageConvergenceDivergenceIndicatorDescription, MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata, MovingAverageConvergenceDivergenceIndicatorDescriptionModule, MultiColumnComboBoxDescription, MultiColumnComboBoxDescriptionMetadata, MultiColumnComboBoxDescriptionModule, MultiColumnComboBoxTextChangedEventArgsDescription, MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata, MultiColumnComboBoxValueChangedEventArgsDescription, MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata, NamePatcher, NameTable, NameTable_Entry, NameValueCollection, NamespaceHandling_$type, NativeUI, NativeUIBuiltInEvents_$type, NativeUIBuiltInProperties_$type, NativeUIButton, NativeUIButtonClickedEventArgs, NativeUICheckbox, NativeUICheckboxChangeEventArgs, NativeUIChildren, NativeUIComponent, NativeUIComponentBuiltInType_$type, NativeUIComponentHorizontalAlignment_$type, NativeUIComponentVerticalAlignment_$type, NativeUIContainer, NativeUIContent, NativeUIDisplayDensity_$type, NativeUIDropDown, NativeUIDropDownSelectedValueChangedEventArgs, NativeUIElementBridge, NativeUIGrid, NativeUIGridHeightType_$type, NativeUIGridWidthType_$type, NativeUIInput, NativeUIInputChangingEventArgs, NativeUIInputDisplayType_$type, NativeUIInputsFactory, NativeUILabel, NativeUISlider, NativeUISliderValueChangedEventArgs, NegativeVolumeIndexIndicatorDescription, NegativeVolumeIndexIndicatorDescriptionMetadata, NegativeVolumeIndexIndicatorDescriptionModule, NetworkCredential, NewLineHandling_$type, NextMonthExpression, NextMonthExpressionDescription, NextMonthExpressionDescriptionMetadata, NextQuarterExpression, NextQuarterExpressionDescription, NextQuarterExpressionDescriptionMetadata, NextWeekExpression, NextWeekExpressionDescription, NextWeekExpressionDescriptionMetadata, NextYearExpression, NextYearExpressionDescription, NextYearExpressionDescriptionMetadata, NonBlockingStreamReader, NotImplementedException, NotSupportedException, NotifyCollectionChangedAction, NotifyCollectionChangedAction_$type, NotifyCollectionChangedEventArgs, NullReferenceException, NullStream, Nullable, Nullable$1, NumberAbbreviatorDescriptionModule, NumberFormatInfo, NumberFormatSpecifier, NumberFormatSpecifierDescription, NumberFormatSpecifierDescriptionMetadata, NumberFormatSpecifierDescriptionModule, Number_$type, Numeric, NumericAngleAxisDescription, NumericAngleAxisDescriptionMetadata, NumericAngleAxisDescriptionModule, NumericAxisBaseDescription, NumericAxisBaseDescriptionMetadata, NumericCellInfoDescription, NumericCellInfoDescriptionMetadata, NumericColumnDescription, NumericColumnDescriptionMetadata, NumericColumnDescriptionModule, NumericRadiusAxisDescription, NumericRadiusAxisDescriptionMetadata, NumericRadiusAxisDescriptionModule, NumericXAxisDescription, NumericXAxisDescriptionMetadata, NumericXAxisDescriptionModule, NumericYAxisDescription, NumericYAxisDescriptionMetadata, NumericYAxisDescriptionModule, ODataDataSourceFilterExpressionVisitor, ODataDataSourceSchema, ODataLiteralEmitter_$type, ObjectCollection, ObjectDisposedException, ObservableCollection$1, ObservableColorCollection, OffsettableWeekExpression, OffsettableWeekExpressionDescription, OffsettableWeekExpressionDescriptionMetadata, OnBalanceVolumeIndicatorDescription, OnBalanceVolumeIndicatorDescriptionMetadata, OnBalanceVolumeIndicatorDescriptionModule, OnClosedEventArgsDescription, OnClosedEventArgsDescriptionMetadata, OnCollapsedEventArgsDescription, OnCollapsedEventArgsDescriptionMetadata, OnExpandedEventArgsDescription, OnExpandedEventArgsDescriptionMetadata, OnPopupEventArgsDescription, OnPopupEventArgsDescriptionMetadata, OpenStreetMapImageryDescription, OpenStreetMapImageryDescriptionMetadata, OpenStreetMapImageryDescriptionModule, OpenStreetMapTileSource, OperationFilterExpression, OperationFilterExpressionDescription, OperationFilterExpressionDescriptionMetadata, OperatorSelectorClosingEventArgsDescription, OperatorSelectorClosingEventArgsDescriptionMetadata, OperatorSelectorOpeningEventArgsDescription, OperatorSelectorOpeningEventArgsDescriptionMetadata, OperatorSelectorValueChangedEventArgsDescription, OperatorSelectorValueChangedEventArgsDescriptionMetadata, OrdinalTimeXAxisDescription, OrdinalTimeXAxisDescriptionMetadata, OrdinalTimeXAxisDescriptionModule, OverlayProxyDescriptionModule, OverlaysDescriptionModule, PageChangedEventArgsDescription, PageChangedEventArgsDescriptionMetadata, PagePredictionEngine, PagedDataSource, PagedDataSourceDescription, PagedDataSourceDescriptionMetadata, Pair$2, Panel, ParameterExpression, Path, PathFigure, PathFigureCollection, PathFigureData, PathFigureUtil, PathGeometry, PathGeometryData, PathMarkupParser, PathMarkupToken, PathMarkupTokenType_$type, PathSegment, PathSegmentCollection, PathSegmentType, PathSegmentType_$type, PathVisualData, PenLineCap, PenLineCap_$type, PenLineJoin, PenLineJoin_$type, PercentChangeYAxisDescription, PercentChangeYAxisDescriptionMetadata, PercentChangeYAxisDescriptionModule, PercentagePriceOscillatorIndicatorDescription, PercentagePriceOscillatorIndicatorDescriptionMetadata, PercentagePriceOscillatorIndicatorDescriptionModule, PercentageVolumeOscillatorIndicatorDescription, PercentageVolumeOscillatorIndicatorDescriptionMetadata, PercentageVolumeOscillatorIndicatorDescriptionModule, PermissionSet, PermissionState, PermissionState_$type, PieChartBaseDescription, PieChartBaseDescriptionMetadata, PieChartCoreDescriptionModule, PieChartDescription, PieChartDescriptionMetadata, PieChartDescriptionModule, PieSliceDataContextDescription, PieSliceDataContextDescriptionMetadata, PieSliceOthersContextDescription, PieSliceOthersContextDescriptionMetadata, PinnedAreaSeparatorDescription, PinnedAreaSeparatorDescriptionMetadata, PinnedAreaSeparatorDescriptionModule, PlatformConstants, PlatformFormatter, PlatformKeyFrameAnimationFactory, PlatformSpecifierType_$type, PlatformUIElementPropertyAccessorFactory, PlotAreaMouseButtonEventArgsDescription, PlotAreaMouseButtonEventArgsDescriptionMetadata, PlotAreaMouseEventArgsDescription, PlotAreaMouseEventArgsDescriptionMetadata, PointCollection, PointCollectionUtil, PointComparer, PointData, PointDescription, PointSeriesDescription, PointSeriesDescriptionMetadata, PointSeriesDescriptionModule, PointTester, PointUtil, Point_$type, PolarAreaSeriesDescription, PolarAreaSeriesDescriptionMetadata, PolarAreaSeriesDescriptionModule, PolarBaseDescription, PolarBaseDescriptionMetadata, PolarLineSeriesBaseDescription, PolarLineSeriesBaseDescriptionMetadata, PolarLineSeriesDescription, PolarLineSeriesDescriptionMetadata, PolarLineSeriesDescriptionModule, PolarScatterSeriesDescription, PolarScatterSeriesDescriptionMetadata, PolarScatterSeriesDescriptionModule, PolarSplineAreaSeriesDescription, PolarSplineAreaSeriesDescriptionMetadata, PolarSplineAreaSeriesDescriptionModule, PolarSplineSeriesDescription, PolarSplineSeriesDescriptionMetadata, PolarSplineSeriesDescriptionModule, PolyBezierSegment, PolyBezierSegmentData, PolyLineSegment, PolyLineVisualData, PolySimplification, Polygon, PolygonUtil, PolygonVisualData, Polyline, PolylineSegmentData, Pool$1, PopupDescription, PopupDescriptionMetadata, PopupDescriptionModule, PortalManager, PositiveVolumeIndexIndicatorDescription, PositiveVolumeIndexIndicatorDescriptionMetadata, PositiveVolumeIndexIndicatorDescriptionModule, PredictionEnginePageCandidate, PrefixDescription, PrefixDescriptionMetadata, PrefixDescriptionModule, PriceChannelOverlayDescription, PriceChannelOverlayDescriptionMetadata, PriceChannelOverlayDescriptionModule, PriceVolumeTrendIndicatorDescription, PriceVolumeTrendIndicatorDescriptionMetadata, PriceVolumeTrendIndicatorDescriptionModule, PrimaryKeyValueDescription, PrimaryKeyValueDescriptionMetadata, PrimaryKeyValueDescriptionModule, PrimitiveAppearanceData, PrimitiveVisualData, PrimitiveVisualDataList, ProgressiveLoadStatusEventArgsDescription, ProgressiveLoadStatusEventArgsDescriptionMetadata, PromiseFactory, PromiseWrapper, PropertyChangedEventArgs, PropertyChangedEventArgs$1, PropertyEditorDataSourceDescription, PropertyEditorDataSourceDescriptionMetadata, PropertyEditorDescription, PropertyEditorDescriptionMetadata, PropertyEditorDescriptionModule, PropertyEditorDescriptionObjectDescription, PropertyEditorDescriptionObjectDescriptionMetadata, PropertyEditorPanelDescription, PropertyEditorPanelDescriptionMetadata, PropertyEditorPanelDescriptionModule, PropertyEditorPropertyDescriptionButtonClickEventArgsDescription, PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionChangedEventArgsDescription, PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionDescription, PropertyEditorPropertyDescriptionDescriptionMetadata, PropertyEditorPropertyDescriptionDescriptionModule, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata, PropertyMetadata, PropertyPath, PropertyReferenceFilterExpression, PropertyReferenceFilterExpressionDescription, PropertyReferenceFilterExpressionDescriptionMetadata, PropertyUpdatedEventArgs, PropertyUpdatedEventArgsDescription, PropertyUpdatedEventArgsDescriptionMetadata, ProvideCalculatorEventArgs, ProvideCalculatorEventArgsDescription, ProvideCalculatorEventArgsDescriptionMetadata, Q1Expression, Q1ExpressionDescription, Q1ExpressionDescriptionMetadata, Q2Expression, Q2ExpressionDescription, Q2ExpressionDescriptionMetadata, Q3Expression, Q3ExpressionDescription, Q3ExpressionDescriptionMetadata, Q4Expression, Q4ExpressionDescription, Q4ExpressionDescriptionMetadata, QuadTree, QuadTreeBoundingBox, QuadTreeForceVector, QuadTreeNode, Queryable, Queue$1, RadialAreaSeriesDescription, RadialAreaSeriesDescriptionMetadata, RadialAreaSeriesDescriptionModule, RadialBaseDescription, RadialBaseDescriptionMetadata, RadialColumnSeriesDescription, RadialColumnSeriesDescriptionMetadata, RadialColumnSeriesDescriptionModule, RadialGaugeCoreDescriptionModule, RadialGaugeDescription, RadialGaugeDescriptionMetadata, RadialGaugeDescriptionModule, RadialGaugeRangeDescription, RadialGaugeRangeDescriptionMetadata, RadialGaugeRangeDescriptionModule, RadialLineSeriesDescription, RadialLineSeriesDescriptionMetadata, RadialLineSeriesDescriptionModule, RadialPieSeriesDescription, RadialPieSeriesDescriptionMetadata, RadialPieSeriesDescriptionModule, Random, RangeAreaSeriesDescription, RangeAreaSeriesDescriptionMetadata, RangeAreaSeriesDescriptionModule, RangeCategorySeriesDescription, RangeCategorySeriesDescriptionMetadata, RangeColumnSeriesDescription, RangeColumnSeriesDescriptionMetadata, RangeColumnSeriesDescriptionModule, RateOfChangeAndMomentumIndicatorDescription, RateOfChangeAndMomentumIndicatorDescriptionMetadata, RateOfChangeAndMomentumIndicatorDescriptionModule, ReactCodeBehindCodeGeneratingComponentRendererCodeEmitter, ReactMarkupCodeGeneratingComponentRendererCodeEmitter, ReadOnlyCollection$1, ReadOnlyObservableCollection$1, ReadState, ReadState_$type, RearrangedList$1, RearrangedListView, Rect, RectChangedEventArgs, RectChangedEventArgsDescription, RectChangedEventArgsDescriptionMetadata, RectData, RectDescription, RectUtil, Rectangle, RectangleGeometry, RectangleGeometryData, RectangleVisualData, RefValueChangedTarget, ReflectionUtil, RefreshCompletedEventArgsDescription, RefreshCompletedEventArgsDescriptionMetadata, Regex, RegexOptions, RegexOptions_$type, RelativeStrengthIndexIndicatorDescription, RelativeStrengthIndexIndicatorDescriptionMetadata, RelativeStrengthIndexIndicatorDescriptionModule, RemovedShiftedRowInfo, RenderRequestedEventArgsDescription, RenderRequestedEventArgsDescriptionMetadata, RenderingContext, ResponsivePhaseDescription, ResponsivePhaseDescriptionMetadata, ResponsiveStateDescription, ResponsiveStateDescriptionMetadata, ResponsiveStateEnteredEventArgsDescription, ResponsiveStateEnteredEventArgsDescriptionMetadata, ResponsiveStateEnteringEventArgsDescription, ResponsiveStateEnteringEventArgsDescriptionMetadata, ResponsiveStateExitedEventArgsDescription, ResponsiveStateExitedEventArgsDescriptionMetadata, ReverseArrayEnumerator$1, RightClipper, RingDescription, RingDescriptionMetadata, RingSeriesBaseDescription, RingSeriesBaseDescriptionMetadata, RingSeriesDescription, RingSeriesDescriptionMetadata, RingSeriesDescriptionModule, RippleDescription, RippleDescriptionMetadata, RippleDescriptionModule, RotateTransform, RowSeparatorDescription, RowSeparatorDescriptionMetadata, RowSeparatorDescriptionModule, RowSeparatorInfoDescription, RowSeparatorInfoDescriptionMetadata, SRProvider, ScaleLegendDescription, ScaleLegendDescriptionMetadata, ScaleLegendDescriptionModule, ScaleTransform, ScalerParamsDescription, ScalerParamsDescriptionMetadata, ScalerVisibleBounds, ScatterAreaSeriesDescription, ScatterAreaSeriesDescriptionMetadata, ScatterAreaSeriesDescriptionModule, ScatterBaseDescription, ScatterBaseDescriptionMetadata, ScatterContourSeriesDescription, ScatterContourSeriesDescriptionMetadata, ScatterContourSeriesDescriptionModule, ScatterLineSeriesDescription, ScatterLineSeriesDescriptionMetadata, ScatterLineSeriesDescriptionModule, ScatterPolygonSeriesDescription, ScatterPolygonSeriesDescriptionMetadata, ScatterPolygonSeriesDescriptionModule, ScatterPolylineSeriesDescription, ScatterPolylineSeriesDescriptionMetadata, ScatterPolylineSeriesDescriptionModule, ScatterSeriesDescription, ScatterSeriesDescriptionMetadata, ScatterSeriesDescriptionModule, ScatterSplineSeriesDescription, ScatterSplineSeriesDescriptionMetadata, ScatterSplineSeriesDescriptionModule, ScatterTriangulationSeriesDescription, ScatterTriangulationSeriesDescriptionMetadata, SchedulableRenderWrapper, ScrollbarStyle_$type, Scroller, ScrollerScrollingEventArgs, ScrollerView, SectionData, SectionDataStartIndexComparer, SectionDataUndisplacedStartIndexComparer, SectionFooterDescription, SectionFooterDescriptionMetadata, SectionFooterDescriptionModule, SectionHeaderCellInfoDescription, SectionHeaderCellInfoDescriptionMetadata, SectionHeaderDescription, SectionHeaderDescriptionMetadata, SectionHeaderDescriptionModule, SectionInformationDescription, SectionInformationDescriptionMetadata, SectionMap, SectionSearchData, SecurityAction, SecurityAction_$type, SeekOrigin, SegmentData, SelectAllCheckboxChangedEventArgsDescription, SelectAllCheckboxChangedEventArgsDescriptionMetadata, SelectedItemChangedEventArgsDescription, SelectedItemChangedEventArgsDescriptionMetadata, SelectedItemChangingEventArgsDescription, SelectedItemChangingEventArgsDescriptionMetadata, SelectedItemsChangedEventArgsDescription, SelectedItemsChangedEventArgsDescriptionMetadata, SelectedItemsChangingEventArgsDescription, SelectedItemsChangingEventArgsDescriptionMetadata, SelectedValueChangedEventArgsDescription, SelectedValueChangedEventArgsDescriptionMetadata, SelectionChangedEventArgsDescription, SelectionChangedEventArgsDescriptionMetadata, SeriesDescription, SeriesDescriptionMetadata, SeriesViewerDescription, SeriesViewerDescriptionMetadata, SeriesViewerManipulationEventArgsDescription, SeriesViewerManipulationEventArgsDescriptionMetadata, Shape, ShapeDataSourceDescription, ShapeDataSourceDescriptionMetadata, ShapeDataSourceDescriptionModule, ShapeFileUtil, ShapeFilterRecordEventArgs, ShapeFilterRecordEventArgsDescription, ShapeFilterRecordEventArgsDescriptionMetadata, ShapeSeriesBaseDescription, ShapeSeriesBaseDescriptionMetadata, ShapeTags, ShapeType, ShapeType_$type, ShapefileConverter, ShapefileRecord, ShapefileRecordDescription, ShapefileRecordDescriptionMetadata, SimpleCategorySeriesRule, SimpleDefaultTooltipDescriptionMetadata, SimpleDefaultTooltipExtendedDescriptionMetadata, SimpleFinancialPriceSeriesRule, SimpleScatterSeriesRule, Size, SizeData, SizeDescription, SizeScaleDescription, SizeScaleDescriptionMetadata, SizeScaleDescriptionModule, SliceClickEventArgsDescription, SliceClickEventArgsDescriptionMetadata, SliceEventArgsDescription, SliceEventArgsDescriptionMetadata, SlowStochasticOscillatorIndicatorDescription, SlowStochasticOscillatorIndicatorDescriptionMetadata, SlowStochasticOscillatorIndicatorDescriptionModule, SmartPlaceableWrapper$1, SmartPlacer, SmartPosition, SmartPosition_$type, SolidBrushAppearanceData, SortDescription, SortDescriptionCollection, SortDescriptionDescription, SortDescriptionDescriptionMetadata, SortIndicatorRenderCompletedEventArgsDescription, SortIndicatorRenderCompletedEventArgsDescriptionMetadata, SortedList$1, SpanBridge, SparklineCoreDescriptionModule, SparklineDescription, SparklineDescriptionMetadata, SparklineDescriptionModule, SpiralFlattener, SpiralTodo, SplineAreaFragmentDescription, SplineAreaFragmentDescriptionMetadata, SplineAreaFragmentDescriptionModule, SplineAreaSeriesDescription, SplineAreaSeriesDescriptionMetadata, SplineAreaSeriesDescriptionModule, SplineFragmentBaseDescription, SplineFragmentBaseDescriptionMetadata, SplineFragmentDescription, SplineFragmentDescriptionMetadata, SplineFragmentDescriptionModule, SplineSeriesBaseDescription, SplineSeriesBaseDescriptionMetadata, SplineSeriesDescription, SplineSeriesDescriptionMetadata, SplineSeriesDescriptionModule, Stack$1, StackPool$1, Stacked100AreaSeriesDescription, Stacked100AreaSeriesDescriptionMetadata, Stacked100AreaSeriesDescriptionModule, Stacked100BarSeriesDescription, Stacked100BarSeriesDescriptionMetadata, Stacked100BarSeriesDescriptionModule, Stacked100ColumnSeriesDescription, Stacked100ColumnSeriesDescriptionMetadata, Stacked100ColumnSeriesDescriptionModule, Stacked100LineSeriesDescription, Stacked100LineSeriesDescriptionMetadata, Stacked100LineSeriesDescriptionModule, Stacked100SplineAreaSeriesDescription, Stacked100SplineAreaSeriesDescriptionMetadata, Stacked100SplineAreaSeriesDescriptionModule, Stacked100SplineSeriesDescription, Stacked100SplineSeriesDescriptionMetadata, Stacked100SplineSeriesDescriptionModule, StackedAreaSeriesDescription, StackedAreaSeriesDescriptionMetadata, StackedAreaSeriesDescriptionModule, StackedBarSeriesDescription, StackedBarSeriesDescriptionMetadata, StackedBarSeriesDescriptionModule, StackedColumnSeriesDescription, StackedColumnSeriesDescriptionMetadata, StackedColumnSeriesDescriptionModule, StackedFragmentSeriesDescription, StackedFragmentSeriesDescriptionMetadata, StackedFragmentSeriesDescriptionModule, StackedLineSeriesDescription, StackedLineSeriesDescriptionMetadata, StackedLineSeriesDescriptionModule, StackedSeriesBaseDescription, StackedSeriesBaseDescriptionMetadata, StackedSeriesCreatedEventArgsDescription, StackedSeriesCreatedEventArgsDescriptionMetadata, StackedSplineAreaSeriesDescription, StackedSplineAreaSeriesDescriptionMetadata, StackedSplineAreaSeriesDescriptionModule, StackedSplineSeriesDescription, StackedSplineSeriesDescriptionMetadata, StackedSplineSeriesDescriptionModule, StandardDeviationIndicatorDescription, StandardDeviationIndicatorDescriptionMetadata, StandardDeviationIndicatorDescriptionModule, StandardLegendItems_$type, StepAreaSeriesDescription, StepAreaSeriesDescriptionMetadata, StepAreaSeriesDescriptionModule, StepLineSeriesDescription, StepLineSeriesDescriptionMetadata, StepLineSeriesDescriptionModule, StochRSIIndicatorDescription, StochRSIIndicatorDescriptionMetadata, StochRSIIndicatorDescriptionModule, StockChangedEventArgs, StockChangedEventArgsDescription, StockChangedEventArgsDescriptionMetadata, StockDataGenerator, StockDataLookup, StockDetails, StockInfo, StockPopulateEventArgsDescription, StockPopulateEventArgsDescriptionMetadata, StockPosition, StockPriceHistory, StockPricePoint, StraightNumericAxisBaseDescription, StraightNumericAxisBaseDescriptionMetadata, StrategyBasedIndicatorDescription, StrategyBasedIndicatorDescriptionMetadata, Stream, StreamReader, StreamWriter, Stretch, Stretch_$type, StringBuilder, StringComparer, StringReader, StringWriter, String_$type, Style, StyleDescription, StyleDescriptionMetadata, StyleSelectorDescription, StyleSelectorDescriptionMetadata, StyleShapeEventArgsDescription, StyleShapeEventArgsDescriptionMetadata, SubCollectionsRule, SuffixDescription, SuffixDescriptionMetadata, SumSummaryCalculator, SummaryCalculator, SummaryCellInfoDescription, SummaryCellInfoDescriptionMetadata, SummaryChangedEventArgsDescription, SummaryChangedEventArgsDescriptionMetadata, SummaryChooserDescriptionModule, SummaryDataDescription, SummaryDataDescriptionMetadata, SummaryDescription, SummaryDescriptionCollection, SummaryGroup, SummaryOperand, SummaryOperand_$type, SummaryResultDescription, SummaryResultDescriptionMetadata, SummaryRowDescription, SummaryRowDescriptionMetadata, SummaryRowRootDescription, SummaryRowRootDescriptionMetadata, SummaryRowRootDescriptionModule, SummaryRowSectionDescription, SummaryRowSectionDescriptionMetadata, SummaryRowSectionDescriptionModule, SweepDirection, SweepDirection_$type, SyncableObservableCollection$1, SyncableObservableCollection$2, SyncableObservableCollectionChangedListener_$type, SynchronizedReader, SynchronizedWriter, SystemException, TRIXIndicatorDescription, TRIXIndicatorDescriptionMetadata, TRIXIndicatorDescriptionModule, TSCodeGeneratingComponentRendererDataEmitter, TSCodeGeneratingComponentRendererHandlerEmitter, TSCodeGeneratingComponentRendererModuleEmitter, Task, Task$1, TaskCompletionSource$1, TaskFactory, TaskStatus, TaskStatus_$type, TemplateCellInfoDescription, TemplateCellInfoDescriptionMetadata, TemplateCellUpdatingEventArgsDescription, TemplateCellUpdatingEventArgsDescriptionMetadata, TemplateColumnDescription, TemplateColumnDescriptionMetadata, TemplateColumnDescriptionModule, TemplateContentDescriptionModule, TemplateContentExtendedDescriptionModule, TemplateHeaderCellInfoDescription, TemplateHeaderCellInfoDescriptionMetadata, TemplateHeaderCellUpdatingEventArgsDescription, TemplateHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateHeaderDescription, TemplateHeaderDescriptionMetadata, TemplateHeaderDescriptionModule, TemplateSectionHeaderCellInfoDescription, TemplateSectionHeaderCellInfoDescriptionMetadata, TemplateSectionHeaderCellUpdatingEventArgsDescription, TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateSectionHeaderDescription, TemplateSectionHeaderDescriptionMetadata, TemplateSectionHeaderDescriptionModule, TextBlock, TextCellInfoDescription, TextCellInfoDescriptionMetadata, TextChangedEventArgsDescription, TextChangedEventArgsDescriptionMetadata, TextColumnDescription, TextColumnDescriptionMetadata, TextColumnDescriptionModule, TextFontMetrics, TextHeaderCellInfoDescription, TextHeaderCellInfoDescriptionMetadata, TextHeaderDescription, TextHeaderDescriptionMetadata, TextHeaderDescriptionModule, TextReader, TextReader_NullTextReader, TextWriter, TextWriter_NullTextWriter, Thickness, ThisMonthExpression, ThisMonthExpressionDescription, ThisMonthExpressionDescriptionMetadata, ThisQuarterExpression, ThisQuarterExpressionDescription, ThisQuarterExpressionDescriptionMetadata, ThisWeekExpression, ThisWeekExpressionDescription, ThisWeekExpressionDescriptionMetadata, ThisYearExpression, ThisYearExpressionDescription, ThisYearExpressionDescriptionMetadata, Thread, Tile, TileGeneratorDescription, TileGeneratorDescriptionMetadata, TileGeneratorMapImageryDescription, TileGeneratorMapImageryDescriptionMetadata, TileGeneratorMapImageryDescriptionModule, TileGeneratorTileSource, TileImageCreatedEventArgs, TileImageZoomChangingEventArgs, TilePositionComparer, TileSeriesDescription, TileSeriesDescriptionMetadata, TileSeriesDescriptionModule, TileWorkCompletedSink, TileWorkSettings, TimeAxisBaseDescription, TimeAxisBaseDescriptionMetadata, TimeAxisBreakDescription, TimeAxisBreakDescriptionMetadata, TimeAxisBreakDescriptionModule, TimeAxisIntervalDescription, TimeAxisIntervalDescriptionMetadata, TimeAxisIntervalDescriptionModule, TimeAxisLabelFormatDescription, TimeAxisLabelFormatDescriptionMetadata, TimeAxisLabelFormatDescriptionModule, TimeXAxisDescription, TimeXAxisDescriptionMetadata, TimeXAxisDescriptionModule, TodayExpression, TodayExpressionDescription, TodayExpressionDescriptionMetadata, TomorrowExpression, TomorrowExpressionDescription, TomorrowExpressionDescriptionMetadata, TooltipContainerDescriptionModule, TooltipContainerExtendedDescriptionModule, TopClipper, TouchGestureEventArgs, TouchGestureRecognizer, TouchGestureState_$type, TouchHistoryItem, TouchPointInfo, TouchVelocityReading, TouchVelocityTracker, Transaction, TransactionCommit, TransactionEvent, TransactionEvent_$type, TransactionHistory, TransactionKeyEqualityComparer, TransactionPendingState, TransactionPendingState_$type, TransactionService, TransactionState, TransactionStateDescription, TransactionStateDescriptionMetadata, TransactionType, TransactionType_$type, Transform, TransformCollection, TransformGroup, TransformMatrixHelpler, TranslateTransform, TreemapDescription, TreemapDescriptionMetadata, TreemapDescriptionModule, TreemapNodePointerEventArgsDescription, TreemapNodePointerEventArgsDescriptionMetadata, TreemapNodeStyleDescription, TreemapNodeStyleDescriptionMetadata, TreemapNodeStyleDescriptionModule, TreemapNodeStyleMappingDescription, TreemapNodeStyleMappingDescriptionMetadata, TreemapNodeStyleMappingDescriptionModule, TreemapNodeStylingEventArgsDescription, TreemapNodeStylingEventArgsDescriptionMetadata, TrendCalculators, TrendLineType, TrendLineType_$type, Triangle, TriangulationDataSourceDescription, TriangulationDataSourceDescriptionMetadata, TriangulationSource, TriangulationSourcePointRecord, TriangulationStatusEventArgs, TriangulationStatusEventArgsDescription, TriangulationStatusEventArgsDescriptionMetadata, Triangulator, TriangulatorContext, Tuple, Tuple$2, Tuple$3, Type, TypeDescriptionCleanups, TypeDescriptionContext, TypeDescriptionMetadata, TypeDescriptionPlatform, TypeDescriptionPlatform_$type, TypeDescriptionPropretyTransforms, TypeDescriptionWellKnownType, TypeDescriptionWellKnownType_$type, TypeRegistrar, TypicalPriceIndicatorDescription, TypicalPriceIndicatorDescriptionMetadata, TypicalPriceIndicatorDescriptionModule, UIElement, UIElementCollection, UIElementPropertyAccessor, UIElementPropertyAccessorFactory, UIElementPropertyId_$type, UTF8Encoding, UTF8Encoding_UTF8Decoder, UltimateOscillatorIndicatorDescription, UltimateOscillatorIndicatorDescriptionMetadata, UltimateOscillatorIndicatorDescriptionModule, UnicodeEncoding, UnknownValuePlotting, UnknownValuePlotting_$type, UnsetValue, UploadDataCompletedEventArgs, UploadDataCompletedEventArgsDescription, UploadDataCompletedEventArgsDescriptionMetadata, UploadStringCompletedEventArgs, UploadStringCompletedEventArgsDescription, UploadStringCompletedEventArgsDescriptionMetadata, Uri, UriKind, UriKind_$type, UriParser, ValueBrushScaleDescription, ValueBrushScaleDescriptionMetadata, ValueBrushScaleDescriptionModule, ValueOverlayDescription, ValueOverlayDescriptionMetadata, ValueOverlayDescriptionModule, ValueType, VerticalAlignment, VerticalAlignment_$type, VerticalAnchoredCategorySeriesDescription, VerticalAnchoredCategorySeriesDescriptionMetadata, VerticalSeparatorCellInfoDescription, VerticalSeparatorCellInfoDescriptionMetadata, VerticalStackedSeriesBaseDescription, VerticalStackedSeriesBaseDescriptionMetadata, VirtualDataSource, VirtualDataSourceDescription, VirtualDataSourceDescriptionMetadata, Visibility, Visibility_$type, VisualDataPixelScalingOptions, VoidEventArgsDescription, VoidEventArgsDescriptionMetadata, Void_$type, WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter, WPFXamlCodeGeneratingComponentRendererCodeEmitter, WaterfallSeriesDescription, WaterfallSeriesDescriptionMetadata, WaterfallSeriesDescriptionModule, WeakReference, WebActivePaneEventArgsDescription, WebActivePaneEventArgsDescriptionMetadata, WebAvatarDescription, WebAvatarDescriptionMetadata, WebAvatarDescriptionModule, WebBadgeDescription, WebBadgeDescriptionMetadata, WebBadgeDescriptionModule, WebButtonBaseDescription, WebButtonBaseDescriptionMetadata, WebButtonBaseDescriptionModule, WebButtonDescription, WebButtonDescriptionMetadata, WebButtonDescriptionModule, WebCalendarBaseDescription, WebCalendarBaseDescriptionMetadata, WebCalendarBaseDescriptionModule, WebCalendarDateEventArgsDescription, WebCalendarDateEventArgsDescriptionMetadata, WebCalendarDescription, WebCalendarDescriptionMetadata, WebCalendarDescriptionModule, WebCardActionsDescription, WebCardActionsDescriptionMetadata, WebCardActionsDescriptionModule, WebCardContentDescription, WebCardContentDescriptionMetadata, WebCardContentDescriptionModule, WebCardDescription, WebCardDescriptionMetadata, WebCardDescriptionModule, WebCardHeaderDescription, WebCardHeaderDescriptionMetadata, WebCardHeaderDescriptionModule, WebCardMediaDescription, WebCardMediaDescriptionMetadata, WebCardMediaDescriptionModule, WebCheckboxBaseDescription, WebCheckboxBaseDescriptionMetadata, WebCheckboxBaseDescriptionModule, WebCheckboxDescription, WebCheckboxDescriptionMetadata, WebCheckboxDescriptionModule, WebChipDescription, WebChipDescriptionMetadata, WebChipDescriptionModule, WebCircularGradientDescription, WebCircularGradientDescriptionMetadata, WebCircularGradientDescriptionModule, WebCircularProgressDescription, WebCircularProgressDescriptionMetadata, WebCircularProgressDescriptionModule, WebClient, WebComponentBoolValueChangedEventArgsDescription, WebComponentBoolValueChangedEventArgsDescriptionMetadata, WebComponentDataValueChangedEventArgsDescription, WebComponentDataValueChangedEventArgsDescriptionMetadata, WebComponentDateValueChangedEventArgsDescription, WebComponentDateValueChangedEventArgsDescriptionMetadata, WebComponentValueChangedEventArgsDescription, WebComponentValueChangedEventArgsDescriptionMetadata, WebComponentsCodeBehindCodeGeneratingComponentRendererCodeEmitter, WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter, WebContentPaneDescription, WebContentPaneDescriptionMetadata, WebContentPaneDescriptionModule, WebDockManagerDescription, WebDockManagerDescriptionMetadata, WebDockManagerDescriptionModule, WebDockManagerLayoutDescription, WebDockManagerLayoutDescriptionMetadata, WebDockManagerLayoutDescriptionModule, WebDockManagerPaneDescription, WebDockManagerPaneDescriptionMetadata, WebDockManagerPaneDescriptionModule, WebDockManagerPointDescription, WebDockManagerPointDescriptionMetadata, WebDockManagerPointDescriptionModule, WebDockManagerResourceStringsDescription, WebDockManagerResourceStringsDescriptionMetadata, WebDockPaneActionDescription, WebDockPaneActionDescriptionMetadata, WebDockingIndicatorDescription, WebDockingIndicatorDescriptionMetadata, WebDocumentHostDescription, WebDocumentHostDescriptionMetadata, WebDocumentHostDescriptionModule, WebDropdownDescription, WebDropdownDescriptionMetadata, WebDropdownDescriptionModule, WebDropdownGroupDescription, WebDropdownGroupDescriptionMetadata, WebDropdownGroupDescriptionModule, WebDropdownHeaderDescription, WebDropdownHeaderDescriptionMetadata, WebDropdownHeaderDescriptionModule, WebDropdownItemComponentEventArgsDescription, WebDropdownItemComponentEventArgsDescriptionMetadata, WebDropdownItemDescription, WebDropdownItemDescriptionMetadata, WebDropdownItemDescriptionModule, WebFloatPaneActionDescription, WebFloatPaneActionDescriptionMetadata, WebFloatingPaneResizeEventArgsDescription, WebFloatingPaneResizeEventArgsDescriptionMetadata, WebFloatingPaneResizeMoveEventArgsDescription, WebFloatingPaneResizeMoveEventArgsDescriptionMetadata, WebFormDataDescription, WebFormDataDescriptionMetadata, WebFormDataEventArgsDescription, WebFormDataEventArgsDescriptionMetadata, WebFormDescription, WebFormDescriptionMetadata, WebFormDescriptionModule, WebHeaderCollection, WebIconButtonDescription, WebIconButtonDescriptionMetadata, WebIconButtonDescriptionModule, WebIconDescription, WebIconDescriptionMetadata, WebIconDescriptionModule, WebInputBaseDescription, WebInputBaseDescriptionMetadata, WebInputBaseDescriptionModule, WebInputDescription, WebInputDescriptionMetadata, WebInputDescriptionModule, WebLinearProgressDescription, WebLinearProgressDescriptionMetadata, WebLinearProgressDescriptionModule, WebListDescription, WebListDescriptionMetadata, WebListDescriptionModule, WebListHeaderDescription, WebListHeaderDescriptionMetadata, WebListHeaderDescriptionModule, WebListItemDescription, WebListItemDescriptionMetadata, WebListItemDescriptionModule, WebMoveFloatingPaneActionDescription, WebMoveFloatingPaneActionDescriptionMetadata, WebMoveTabActionDescription, WebMoveTabActionDescriptionMetadata, WebNavDrawerDescription, WebNavDrawerDescriptionMetadata, WebNavDrawerDescriptionModule, WebNavDrawerHeaderItemDescription, WebNavDrawerHeaderItemDescriptionMetadata, WebNavDrawerHeaderItemDescriptionModule, WebNavDrawerItemDescription, WebNavDrawerItemDescriptionMetadata, WebNavDrawerItemDescriptionModule, WebNavbarDescription, WebNavbarDescriptionMetadata, WebNavbarDescriptionModule, WebNumberEventArgsDescription, WebNumberEventArgsDescriptionMetadata, WebPaneCloseEventArgsDescription, WebPaneCloseEventArgsDescriptionMetadata, WebPaneDragActionDescription, WebPaneDragActionDescriptionMetadata, WebPaneDragEndEventArgsDescription, WebPaneDragEndEventArgsDescriptionMetadata, WebPaneDragOverEventArgsDescription, WebPaneDragOverEventArgsDescriptionMetadata, WebPaneDragStartEventArgsDescription, WebPaneDragStartEventArgsDescriptionMetadata, WebPaneHeaderConnectionEventArgsDescription, WebPaneHeaderConnectionEventArgsDescriptionMetadata, WebPaneHeaderElementDescription, WebPaneHeaderElementDescriptionMetadata, WebPanePinnedEventArgsDescription, WebPanePinnedEventArgsDescriptionMetadata, WebProgressBaseDescription, WebProgressBaseDescriptionMetadata, WebProgressBaseDescriptionModule, WebRadioDescription, WebRadioDescriptionMetadata, WebRadioDescriptionModule, WebRadioGroupDescription, WebRadioGroupDescriptionMetadata, WebRadioGroupDescriptionModule, WebRangeSliderDescription, WebRangeSliderDescriptionMetadata, WebRangeSliderDescriptionModule, WebRangeSliderValueDescription, WebRangeSliderValueDescriptionMetadata, WebRangeSliderValueEventArgsDescription, WebRangeSliderValueEventArgsDescriptionMetadata, WebRatingDescription, WebRatingDescriptionMetadata, WebRatingDescriptionModule, WebRatingSymbolDescription, WebRatingSymbolDescriptionMetadata, WebRatingSymbolDescriptionModule, WebRippleDescription, WebRippleDescriptionMetadata, WebRippleDescriptionModule, WebSliderBaseDescription, WebSliderBaseDescriptionMetadata, WebSliderBaseDescriptionModule, WebSliderDescription, WebSliderDescriptionMetadata, WebSliderDescriptionModule, WebSliderLabelDescription, WebSliderLabelDescriptionMetadata, WebSliderLabelDescriptionModule, WebSnackbarDescription, WebSnackbarDescriptionMetadata, WebSnackbarDescriptionModule, WebSplitPaneDescription, WebSplitPaneDescriptionMetadata, WebSplitPaneDescriptionModule, WebSwitchDescription, WebSwitchDescriptionMetadata, WebSwitchDescriptionModule, WebTabGroupPaneDescription, WebTabGroupPaneDescriptionMetadata, WebTabGroupPaneDescriptionModule, WebTabHeaderConnectionEventArgsDescription, WebTabHeaderConnectionEventArgsDescriptionMetadata, WebTabHeaderElementDescription, WebTabHeaderElementDescriptionMetadata, WebThemeControllerDescription, WebThemeControllerDescriptionMetadata, WebToastDescription, WebToastDescriptionMetadata, WebToastDescriptionModule, WebValueChangedEventArgsDescription, WebValueChangedEventArgsDescriptionMetadata, WeightedCloseIndicatorDescription, WeightedCloseIndicatorDescriptionMetadata, WeightedCloseIndicatorDescriptionModule, WhitespaceHandling, WhitespaceHandling_$type, WilliamsPercentRIndicatorDescription, WilliamsPercentRIndicatorDescriptionMetadata, WilliamsPercentRIndicatorDescriptionModule, WrapperExpression, WrapperExpressionDescription, WrapperExpressionDescriptionMetadata, WriteState, WriteState_$type, WriteableBitmap, XAttribute, XBaseDataType, XBaseDataType_$type, XBaseField, XContainer, XDocument, XElement, XName, XNamespace, XNode, XObject, XYChartDescription, XYChartDescriptionMetadata, XamMultiScaleImage, XamMultiScaleImageView, XamMultiScaleTileSource, XmlAttribute_$type, XmlChar, XmlConvert, XmlDocument_$type, XmlElement_$type, XmlException, XmlInputStream, XmlLinkedNode_$type, XmlNameTable, XmlNamedNodeMap_$type, XmlNamespaceManager, XmlNamespaceManager_NsDecl, XmlNamespaceManager_NsScope, XmlNamespaceScope_$type, XmlNodeList_$type, XmlNodeType, XmlNodeType_$type, XmlNode_$type, XmlParserContext, XmlParserContext_ContextItem, XmlReader, XmlResolver, XmlSpace, XmlSpace_$type, XmlStreamReader, XmlTextReader, XmlTextReader_DtdInputStateStack, XmlTextReader_DtdInputState_$type, XmlTextReader_TagName, XmlTextReader_XmlAttributeTokenInfo, XmlTextReader_XmlTokenInfo, XmlTextWriter, XmlTextWriter_StringUtil, XmlTextWriter_XmlDeclState_$type, XmlTextWriter_XmlNodeInfo, XmlUrlResolver, XmlUtils, XmlWriter, YearToDateExpression, YearToDateExpressionDescription, YearToDateExpressionDescriptionMetadata, YesterdayExpression, YesterdayExpressionDescription, YesterdayExpressionDescriptionMetadata, ZoomSliderDescription, ZoomSliderDescriptionMetadata, ZoomSliderDescriptionModule, ZoomSliderResolvingAxisValueEventArgsDescription, ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata, a$, addBrushPaletteThemeEntry, addPaletteThemeEntry, addTextThemeEntry, arrayClear, arrayClear1, arrayContains, arrayCopy, arrayCopy1, arrayCopy2, arrayCopyTo, arrayFindByName, arrayGetLength, arrayGetRank, arrayGetValue, arrayIndexOf1, arrayInsert, arrayInsertRange, arrayInsertRange1, arrayLast, arrayListCreate, arrayRemoveAt, arrayRemoveItem, arrayResize, arrayShallowClone, b$, b64toUint8Array, boolCompare, boolToDecimal, boolToDouble, boolToInt16, boolToInt32, boolToInt64, boolToSingle, boolToString, boolToUInt16, boolToUInt32, boolToUInt64, boxArray$1, brushCollectionToString, brushToString, callStaticConstructors, ceil10, charMaxValue, charMinValue, colorCollectionToString, colorToString, compareTo, createGuid, d$, dateAdd, dateAddDays, dateAddHours, dateAddMinutes, dateAddMonths, dateAddSeconds, dateAddYears, dateEquals, dateFromFileTime, dateFromFileTimeUtc, dateFromMilliseconds, dateFromTicks, dateFromValues, dateGetDate, dateGetMonth, dateGetTimeOfDay, dateIsDST, dateIsLeapYear, dateKind, dateMaxValue, dateMinValue, dateNow, dateParse, dateParseExact, dateStdTimezoneOffset, dateSubtract, dateToFileTime, dateToString, dateToStringFormat, dateToday, dateTryParse, daysInMonth, decimalAdjust, defaultDVDateParse, delegateCombine, delegateRemove, endsWith1, ensureBool, ensureEnum, enumGetBox, enumToString, floor10, fromBrushCollection, fromColorCollection, fromDict, fromEn, fromEnum, fromOADate, fromPoint, fromRect, fromSize, fromSpinal, getAllPropertyNames, getBoxIfEnum, getColorStringSafe, getEn, getEnumerator, getEnumeratorObject, getInstanceType, getModifiedProps, ieeeRemainder, indexOfAny, initializePropertiesFromCss, intDivide, intSToU, intToString, intToString1, isDigit, isDigit1, isInfinity, isLetter, isLetterOrDigit, isLower, isNaN_, isNegativeInfinity, isNumber, isPoint, isPositiveInfinity, isRect, isSize, isValidProp, lastIndexOfAny, log10, logBase, markDep, markEnum, markStruct, markType, n$, netRegexToJS, nullableAdd, nullableConcat, nullableDivide, nullableEquals, nullableGreaterThan, nullableGreaterThanOrEqual, nullableIsNull, nullableLessThan, nullableLessThanOrEqual, nullableModulus, nullableMultiply, nullableNotEquals, nullableSubtract, numberToString, numberToString1, numberToString2, padLeft, padRight, parseBool, parseInt16_1, parseInt16_2, parseInt32_1, parseInt32_2, parseInt64_1, parseInt64_2, parseInt8_1, parseInt8_2, parseIntCore, parseNumber, parseNumber1, parseUInt16_1, parseUInt16_2, parseUInt32_1, parseUInt32_2, parseUInt64_1, parseUInt64_2, parseUInt8_1, parseUInt8_2, pointFromLiteral, pointToLiteral, pointToString, rectFromLiteral, rectToLiteral, rectToString, reverse, rgbToHex, round10, round10N, runOn, s$, sizeFromLiteral, sizeToLiteral, sizeToString, sleep, startsWith1, strToColor, stringCompare, stringCompare1, stringCompare2, stringCompare3, stringCompareOrdinal, stringCompareTo, stringConcat, stringContains, stringCopyToCharArray, stringCreateFromChar, stringCreateFromCharArray, stringCreateFromCharArraySlice, stringEmpty, stringEndsWith, stringEquals, stringEquals1, stringEscapeRegExp, stringFormat, stringFormat1, stringFormat2, stringInsert, stringIsDigit, stringIsNullOrEmpty, stringIsNullOrWhiteSpace, stringJoin, stringJoin1, stringRemove, stringReplace, stringSplit, stringStartsWith, stringToBrush, stringToCharArray, stringToColor, stringToLocaleLower, stringToLocaleUpper, stringToString$1, stringToString1, timeSpanDays, timeSpanFromDays, timeSpanFromHours, timeSpanFromMilliseconds, timeSpanFromMinutes, timeSpanFromSeconds, timeSpanFromTicks, timeSpanHours, timeSpanInit1, timeSpanInit2, timeSpanInit3, timeSpanMilliseconds, timeSpanMinutes, timeSpanNegate, timeSpanSeconds, timeSpanTicks, timeSpanTotalDays, timeSpanTotalHours, timeSpanTotalMilliseconds, timeSpanTotalMinutes, timeSpanTotalSeconds, toBoolean, toBrushCollection, toColorCollection, toDecimal, toDouble, toEn, toEnum, toLocalTime, toLongDateString, toLongTimeString, toNullable, toOADate, toPoint, toRect, toSize, toSpinal, toString1, toUniversalTime, trim, trimEnd, trimStart, truncate, tryParseBool, tryParseInt16_1, tryParseInt16_2, tryParseInt32_1, tryParseInt32_2, tryParseInt64_1, tryParseInt64_2, tryParseInt8_1, tryParseInt8_2, tryParseIntCore, tryParseNumber, tryParseNumber1, tryParseUInt16_1, tryParseUInt16_2, tryParseUInt32_1, tryParseUInt32_2, tryParseUInt64_1, tryParseUInt64_2, tryParseUInt8_1, tryParseUInt8_2, typeCast, typeCastObjTo$t, typeGetValue, u32BitwiseAnd, u32BitwiseOr, u32BitwiseXor, u32LS, uint8ArraytoB64, unboxArray, unicode_hack, unwrapNullable, v$, wellKnownColors, wrapNullable };
|
|
183793
|
+
export { APIFactory, AbsoluteVolumeOscillatorIndicatorDescription, AbsoluteVolumeOscillatorIndicatorDescriptionMetadata, AbsoluteVolumeOscillatorIndicatorDescriptionModule, AbstractEnumerable, AbstractEnumerator, AccumulationDistributionIndicatorDescription, AccumulationDistributionIndicatorDescriptionMetadata, AccumulationDistributionIndicatorDescriptionModule, Activator, AggregateException, AlignLinearGraphLabelEventArgsDescription, AlignLinearGraphLabelEventArgsDescriptionMetadata, AlignRadialGaugeLabelEventArgsDescription, AlignRadialGaugeLabelEventArgsDescriptionMetadata, AnchoredCategorySeriesDescription, AnchoredCategorySeriesDescriptionMetadata, AnchoredRadialSeriesDescription, AnchoredRadialSeriesDescriptionMetadata, AngleSimplifier, AngularCodeBehindCodeGeneratingComponentRendererCodeEmitter, AngularRenderer, AngularTemplateCodeGeneratingComponentRendererCodeEmitter, AngularWrapper, AnimationBrowserTickProvider, AnimationKeyFrame, AnimationKeyFrameEffect, AnimationKeyFrameEffectTargetType_$type, AnimationKeyFrameEffectTiming, AnimationKeyFrameProperty, AnimationManager, AnimationState, AnnotationLayerDescription, AnnotationLayerDescriptionMetadata, AnnotationLayerProxyDescriptionModule, AppearanceHelper, ApplyButtonClickEventArgsDescription, ApplyButtonClickEventArgsDescriptionMetadata, ArcGISOnlineMapImageryDescription, ArcGISOnlineMapImageryDescriptionMetadata, ArcGISOnlineMapImageryDescriptionModule, ArcGISOnlineTileSource, ArcSegment, ArcSegmentData, AreaFragmentDescription, AreaFragmentDescriptionMetadata, AreaFragmentDescriptionModule, AreaSeriesDescription, AreaSeriesDescriptionMetadata, AreaSeriesDescriptionModule, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayAccessHelper, ArrayBox$1, ArrayExtension, Array_$type, AsciiEncoding, AssigningCategoryMarkerStyleEventArgsDescription, AssigningCategoryMarkerStyleEventArgsDescriptionMetadata, AssigningCategoryStyleEventArgsBaseDescription, AssigningCategoryStyleEventArgsBaseDescriptionMetadata, AssigningCategoryStyleEventArgsDescription, AssigningCategoryStyleEventArgsDescriptionMetadata, AssigningPolarMarkerStyleEventArgsDescription, AssigningPolarMarkerStyleEventArgsDescriptionMetadata, AssigningPolarStyleEventArgsBaseDescription, AssigningPolarStyleEventArgsBaseDescriptionMetadata, AssigningPolarStyleEventArgsDescription, AssigningPolarStyleEventArgsDescriptionMetadata, AssigningRadialMarkerStyleEventArgsDescription, AssigningRadialMarkerStyleEventArgsDescriptionMetadata, AssigningRadialStyleEventArgsBaseDescription, AssigningRadialStyleEventArgsBaseDescriptionMetadata, AssigningRadialStyleEventArgsDescription, AssigningRadialStyleEventArgsDescriptionMetadata, AssigningScatterMarkerStyleEventArgsDescription, AssigningScatterMarkerStyleEventArgsDescriptionMetadata, AssigningScatterStyleEventArgsBaseDescription, AssigningScatterStyleEventArgsBaseDescriptionMetadata, AssigningScatterStyleEventArgsDescription, AssigningScatterStyleEventArgsDescriptionMetadata, AssigningSeriesShapeStyleEventArgsBaseDescription, AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata, AssigningSeriesStyleEventArgsBaseDescription, AssigningSeriesStyleEventArgsBaseDescriptionMetadata, AssigningShapeMarkerStyleEventArgsDescription, AssigningShapeMarkerStyleEventArgsDescriptionMetadata, AssigningShapeStyleEventArgsBaseDescription, AssigningShapeStyleEventArgsBaseDescriptionMetadata, AssigningShapeStyleEventArgsDescription, AssigningShapeStyleEventArgsDescriptionMetadata, AsyncCompletedEventArgs, AsyncCompletedEventArgsDescription, AsyncCompletedEventArgsDescriptionMetadata, AsyncDataSourcePageRequest, AsyncDataSourcePageTaskHolder, AsyncVirtualDataSourceDataProviderWorkerSettings, AsyncVirtualDataSourceProviderTaskDataHolder, AsyncVirtualDataSourceProviderWorker, AsyncVirtualDataTask, AverageDirectionalIndexIndicatorDescription, AverageDirectionalIndexIndicatorDescriptionMetadata, AverageDirectionalIndexIndicatorDescriptionModule, AverageSummaryCalculator, AverageTrueRangeIndicatorDescription, AverageTrueRangeIndicatorDescriptionMetadata, AverageTrueRangeIndicatorDescriptionModule, AxisAnnotationDescription, AxisAnnotationDescriptionMetadata, AxisDescription, AxisDescriptionMetadata, AxisRangeChangedEventArgsDescription, AxisRangeChangedEventArgsDescriptionMetadata, BarFragmentDescription, BarFragmentDescriptionMetadata, BarFragmentDescriptionModule, BarSeriesDescription, BarSeriesDescriptionMetadata, BarSeriesDescriptionModule, Base, BaseControlTheme, BaseControlTheme_$type, BaseDOMEventProxy, BaseDataSource, BaseDataSourceDescription, BaseDataSourceDescriptionMetadata, BaseError, BaseTransactionService, BezierSegment, BezierSegmentData, BinaryFileDownloader, BinaryReader, BinaryUtil, BinaryWriter, Binding, BindingFormatter, BingMapsMapImageryDescription, BingMapsMapImageryDescriptionMetadata, BingMapsMapImageryDescriptionModule, BingMapsTileSource, BitArray, BitConverter, BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter, BlazorCodeGeneratingComponentRendererModuleEmitter, BlazorRazorCodeGeneratingComponentRendererCodeEmitter, BollingerBandWidthIndicatorDescription, BollingerBandWidthIndicatorDescriptionMetadata, BollingerBandWidthIndicatorDescriptionModule, BollingerBandsOverlayDescription, BollingerBandsOverlayDescriptionMetadata, BollingerBandsOverlayDescriptionModule, Boolean_$type, BottomClipper, Brush, BrushAppearanceData, BrushCollection, BrushCollectionUtil, BrushScaleDescription, BrushScaleDescriptionMetadata, BrushScaleDescriptionModule, BrushUtil, BrushUtilCore, BubbleSeriesDescription, BubbleSeriesDescriptionMetadata, BubbleSeriesDescriptionModule, Buffer, BulletGraphCoreDescriptionModule, BulletGraphDescription, BulletGraphDescriptionMetadata, BulletGraphDescriptionModule, ButtonClickEventArgsDescription, ButtonClickEventArgsDescriptionMetadata, ButtonDescription, ButtonDescriptionMetadata, ButtonDescriptionModule, ButtonGroupDescription, ButtonGroupDescriptionMetadata, ButtonGroupDescriptionModule, ButtonGroupSelectionChangedEventArgsDescription, ButtonGroupSelectionChangedEventArgsDescriptionMetadata, CalculatedColumnDescription, CalculatedColumnDescriptionMetadata, Calendar, CalendarDateDescription, CalendarDateDescriptionMetadata, CalendarDescription, CalendarDescriptionMetadata, CalendarDescriptionModule, CalendarFormatOptionsDescription, CalendarFormatOptionsDescriptionMetadata, CalendarResourceStringsDescription, CalendarResourceStringsDescriptionMetadata, CalendarWeekRule_$type, CalloutAnnotationDescription, CalloutAnnotationDescriptionMetadata, CalloutContentUpdatingEventArgsDescription, CalloutContentUpdatingEventArgsDescriptionMetadata, CalloutLabelUpdatingEventArgsDescription, CalloutLabelUpdatingEventArgsDescriptionMetadata, CalloutLayerDescription, CalloutLayerDescriptionMetadata, CalloutLayerDescriptionModule, CalloutRenderStyleUpdatingEventArgsDescription, CalloutRenderStyleUpdatingEventArgsDescriptionMetadata, CalloutSeriesSelectingEventArgsDescription, CalloutSeriesSelectingEventArgsDescriptionMetadata, CalloutStyleUpdatingEventArgsDescription, CalloutStyleUpdatingEventArgsDescriptionMetadata, CancelBehavior, CancelBehavior_$type, CancelButtonClickEventArgsDescription, CancelButtonClickEventArgsDescriptionMetadata, CancelEventArgs, CancelEventArgsDescription, CancelEventArgsDescriptionMetadata, CancellingMultiScaleImageEventArgs, CancellingMultiScaleImageEventArgsDescription, CancellingMultiScaleImageEventArgsDescriptionMetadata, Canvas, CanvasGestureDOMEventProxy, CanvasRenderScheduler, CanvasViewRenderer, Capture, CategoryAngleAxisDescription, CategoryAngleAxisDescriptionMetadata, CategoryAngleAxisDescriptionModule, CategoryAxisBaseDescription, CategoryAxisBaseDescriptionMetadata, CategoryChartCoreDescriptionModule, CategoryChartDescription, CategoryChartDescriptionMetadata, CategoryChartDescriptionModule, CategoryDateTimeXAxisDescription, CategoryDateTimeXAxisDescriptionMetadata, CategoryDateTimeXAxisDescriptionModule, CategoryHighlightLayerDescription, CategoryHighlightLayerDescriptionMetadata, CategoryHighlightLayerDescriptionModule, CategoryItemHighlightLayerDescription, CategoryItemHighlightLayerDescriptionMetadata, CategoryItemHighlightLayerDescriptionModule, CategorySeriesDescription, CategorySeriesDescriptionMetadata, CategoryToolTipLayerDescription, CategoryToolTipLayerDescriptionMetadata, CategoryToolTipLayerDescriptionModule, CategoryXAxisDescription, CategoryXAxisDescriptionMetadata, CategoryXAxisDescriptionModule, CategoryYAxisDescription, CategoryYAxisDescriptionMetadata, CategoryYAxisDescriptionModule, CellActionManagerDescription, CellActionManagerDescriptionMetadata, CellInfoDescription, CellInfoDescriptionMetadata, CellKeyDescription, CellKeyDescriptionMetadata, CellKeyDescriptionModule, CellRangeDescription, CellRangeDescriptionMetadata, CellRangeDescriptionModule, CellStyleRequestedEventArgsDescription, CellStyleRequestedEventArgsDescriptionMetadata, ChaikinOscillatorIndicatorDescription, ChaikinOscillatorIndicatorDescriptionMetadata, ChaikinOscillatorIndicatorDescriptionModule, ChaikinVolatilityIndicatorDescription, ChaikinVolatilityIndicatorDescriptionMetadata, ChaikinVolatilityIndicatorDescriptionModule, ChartCursorEventArgsDescription, ChartCursorEventArgsDescriptionMetadata, ChartMouseEventArgsDescription, ChartMouseEventArgsDescriptionMetadata, ChartSeriesEventArgsDescription, ChartSeriesEventArgsDescriptionMetadata, CheckboxChangeEventArgsDescription, CheckboxChangeEventArgsDescriptionMetadata, CheckboxDescription, CheckboxDescriptionMetadata, CheckboxDescriptionModule, CheckboxListDescription, CheckboxListDescriptionMetadata, CheckboxListDescriptionModule, CheckedChangedEventArgsDescription, CheckedChangedEventArgsDescriptionMetadata, ChildContentDescriptionModule, ChildContentExtendedDescriptionModule, Clipboard, Clipper, CodeGeneratingCodeWriter, CodeGeneratingComponentRenderer, CodeGeneratingComponentRendererCodeEmitter, CodeGeneratingComponentRendererDataEmitter, CodeGeneratingComponentRendererDataEmitterItemType, CodeGeneratingComponentRendererDataEmitterPropertyType, CodeGeneratingComponentRendererHandlerEmitter, CodeGeneratingComponentRendererModuleEmitter, CodeGeneratingImportManager, CodeGeneratingRegexHelper, CodeGeneratingRendererResult, CodeGenerationContainer, CodeGenerationFolderTemplate, CodeGenerationItemBuilder, CodeGenerationItemBuilderPropertyInfo, CodeGenerationLibrary, CodeGenerationLibraryItem, CodeGenerationLibraryItemContent, CodeGenerationLibraryItemContentConfiguration, CodeGenerationLibraryItemContentLocation, CodeGenerationLibraryItemContentLocation_$type, CodeGenerationLibraryItemPlatform, CodeGenerationLibraryItemPlatform_$type, CodeGenerationLibraryItemType, CodeGenerationLibraryItemType_$type, CodeGenerationRendererAdapter, CodeGenerationRendererOptions, CodeGenerationSpecialValue, CodeGenerationSpecialValueType_$type, CodeGenerationTargetPlatforms, CodeGenerationTargetPlatforms_$type, CodeGenerationTransformer, Collection$1, CollectionAdapter, Color, ColorCollectionUtil, ColorData, ColorScaleDescription, ColorScaleDescriptionMetadata, ColorUtil, ColumnChooserDescription, ColumnChooserDescriptionMetadata, ColumnChooserDescriptionModule, ColumnComparisonFilterConditionDescription, ColumnComparisonFilterConditionDescriptionMetadata, ColumnCustomFilterConditionDescription, ColumnCustomFilterConditionDescriptionMetadata, ColumnDescription, ColumnDescriptionMetadata, ColumnExchangerDescription, ColumnExchangerDescriptionMetadata, ColumnFilterConditionDescription, ColumnFilterConditionDescriptionMetadata, ColumnFilterConditionGroupDescription, ColumnFilterConditionGroupDescriptionMetadata, ColumnFragmentDescription, ColumnFragmentDescriptionMetadata, ColumnFragmentDescriptionModule, ColumnGroupDescriptionDescription, ColumnGroupDescriptionDescriptionMetadata, ColumnGroupDescriptionDescriptionModule, ColumnGroupingDescription, ColumnGroupingDescriptionMetadata, ColumnGroupingDescriptionModule, ColumnHiddenChangedEventArgsDescription, ColumnHiddenChangedEventArgsDescriptionMetadata, ColumnMovingSeparatorDescription, ColumnMovingSeparatorDescriptionMetadata, ColumnMovingSeparatorDescriptionModule, ColumnPinnedChangedEventArgsDescription, ColumnPinnedChangedEventArgsDescriptionMetadata, ColumnPinningDescription, ColumnPinningDescriptionMetadata, ColumnPinningDescriptionModule, ColumnPropertySetterDescription, ColumnPropertySetterDescriptionMetadata, ColumnReference, ColumnResizingSeparatorDescription, ColumnResizingSeparatorDescriptionMetadata, ColumnResizingSeparatorDescriptionModule, ColumnSeriesDescription, ColumnSeriesDescriptionMetadata, ColumnSeriesDescriptionModule, ColumnSortDescriptionDescription, ColumnSortDescriptionDescriptionMetadata, ColumnSortDescriptionDescriptionModule, ColumnSummaryDescriptionDescription, ColumnSummaryDescriptionDescriptionMetadata, ColumnSummaryDescriptionDescriptionModule, ColumnSupportingCalculationDescription, ColumnSupportingCalculationDescriptionMetadata, ColumnWidthDescription, ColumnWidthDescriptionMetadata, ColumnWidthDescriptionModule, ComboBoxColumnDescription, ComboBoxColumnDescriptionMetadata, ComboBoxColumnDescriptionModule, CommodityChannelIndexIndicatorDescription, CommodityChannelIndexIndicatorDescriptionMetadata, CommodityChannelIndexIndicatorDescriptionModule, CompareInfo, CompareUtil, Comparer$1, CompletedSinkImpl, ComponentRenderer, ComponentRendererAdapter, ContainerState, ContentChildCollection, ContentControl, ContourValueResolverDescription, ContourValueResolverDescriptionMetadata, Control, ControlDisplayDensity, ControlDisplayDensity_$type, Convert, ConvertUtil, CoreGeometryUtil, CornerRadius, CountSummaryCalculator, CrosshairLayerDescription, CrosshairLayerDescriptionMetadata, CrosshairLayerDescriptionModule, CssColorPropertyAccessor, CssCornerRadiusPropertyAccessor, CssFloatPropertyAccessor, CssGradientUtil, CssHelper, CssLengthArrayPropertyAccessor, CssLengthPropertyAccessor, CssPixelsPropertyAccessor, CssThicknessPropertyAccessor, CssTransformPropertyAccessor, CultureInfo, CustomContourValueResolverDescription, CustomContourValueResolverDescriptionMetadata, CustomContourValueResolverDescriptionModule, CustomContourValueResolverEventArgsDescription, CustomContourValueResolverEventArgsDescriptionMetadata, CustomIndicatorDescription, CustomIndicatorDescriptionMetadata, CustomIndicatorDescriptionModule, CustomMapImageryDescription, CustomMapImageryDescriptionMetadata, CustomMapImageryDescriptionModule, CustomMapTileSource, CustomPaletteBrushScaleDescription, CustomPaletteBrushScaleDescriptionMetadata, CustomPaletteBrushScaleDescriptionModule, CustomPaletteColorScaleDescription, CustomPaletteColorScaleDescriptionMetadata, CustomPaletteColorScaleDescriptionModule, DOMEventProxy, DOMExecutionContext, DTDObjectModel, DVContainer, DVInteractivityDescriptionModule, DVSR, DataAbbreviationMode, DataAbbreviationMode_$type, DataBindingEventArgsDescription, DataBindingEventArgsDescriptionMetadata, DataChartAnnotationDescriptionModule, DataChartCategoryCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartCategoryTrendLineDescriptionModule, DataChartCoreDescriptionModule, DataChartDefaultTooltipsDescriptionMetadata, DataChartDefaultTooltipsExtendedDescriptionMetadata, DataChartDescription, DataChartDescriptionMetadata, DataChartExtendedAxesDescriptionModule, DataChartFinancialCoreDescriptionModule, DataChartFinancialDescriptionModule, DataChartFinancialIndicatorsDescriptionModule, DataChartFinancialOverlaysDescriptionModule, DataChartInteractivityDescriptionModule, DataChartMouseButtonEventArgsDescription, DataChartMouseButtonEventArgsDescriptionMetadata, DataChartPolarCoreDescriptionModule, DataChartPolarDescriptionModule, DataChartRadialCoreDescriptionModule, DataChartRadialDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartShapeCoreDescriptionModule, DataChartShapeDescriptionModule, DataChartStackedDescriptionModule, DataChartVerticalCategoryCoreDescriptionModule, DataChartVerticalCategoryDescriptionModule, DataChartVisualDataDescriptionModule, DataContext, DataContextDescription, DataContextDescriptionMetadata, DataFormats, DataGridAllColumnsDescriptionModule, DataGridComparisonOperatorSelectorDescription, DataGridComparisonOperatorSelectorDescriptionMetadata, DataGridCoreDescriptionModule, DataGridDescription, DataGridDescriptionMetadata, DataGridDescriptionModule, DataGridExpansionIndicatorDescription, DataGridExpansionIndicatorDescriptionMetadata, DataGridFilterDialogDescription, DataGridFilterDialogDescriptionMetadata, DataGridPagerDescription, DataGridPagerDescriptionMetadata, DataGridPagerDescriptionModule, DataGridSortIndicatorDescription, DataGridSortIndicatorDescriptionMetadata, DataGridToolbarDescription, DataGridToolbarDescriptionMetadata, DataGridToolbarDescriptionModule, DataLegendDescription, DataLegendDescriptionMetadata, DataLegendDescriptionModule, DataLegendHeaderDateMode, DataLegendHeaderDateMode_$type, DataLegendHeaderTimeMode, DataLegendHeaderTimeMode_$type, DataLegendLabelMode, DataLegendLabelMode_$type, DataLegendSeriesContext, DataLegendSeriesContextDescription, DataLegendSeriesContextDescriptionMetadata, DataLegendSeriesGroup, DataLegendSeriesGroup_$type, DataLegendSeriesValueInfo, DataLegendSeriesValueInfoDescription, DataLegendSeriesValueInfoDescriptionMetadata, DataLegendSeriesValueType, DataLegendSeriesValueType_$type, DataLegendStylingColumnEventArgsDescription, DataLegendStylingColumnEventArgsDescriptionMetadata, DataLegendStylingRowEventArgsDescription, DataLegendStylingRowEventArgsDescriptionMetadata, DataLegendSummaryColumn, DataLegendSummaryColumnDescription, DataLegendSummaryColumnDescriptionMetadata, DataLegendSummaryEventArgsDescription, DataLegendSummaryEventArgsDescriptionMetadata, DataLegendSummaryType, DataLegendSummaryType_$type, DataLegendUnitsMode, DataLegendUnitsMode_$type, DataLegendValueMode, DataLegendValueMode_$type, DataObject, DataSeries, DataSeriesAdapter, DataSeriesAdapterImplementation, DataSeriesAdapterRemovingDuplicatesEventArgs, DataSeriesAdapterRuleCollection, DataSeriesAdapterRunContext, DataSeriesAdapterRunEventArgs, DataSeriesAdapterUpdateNotifier, DataSeriesAxisType, DataSeriesAxisType_$type, DataSeriesCollection, DataSeriesDataProviderAnalyzer, DataSeriesIntent, DataSeriesIntent_$type, DataSeriesMarker, DataSeriesMarker_$type, DataSeriesMemberPathHint, DataSeriesType, DataSeriesType_$type, DataSourceAggregatedResult, DataSourceAggregatedResultDescription, DataSourceAggregatedResultDescriptionMetadata, DataSourceBatchCompletedEventArgs, DataSourceBatchStartedEventArgs, DataSourceDataCommittedEventArgs, DataSourceDataProviderSchemaChangedEventArgs, DataSourceDataProviderSchemaChangedEventArgsDescription, DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata, DataSourceExecutionContext, DataSourceLocalDataProvider, DataSourcePageRequestPriority, DataSourcePageRequestPriority_$type, DataSourcePropertiesComparer, DataSourceRowExpansionChangedEventArgs, DataSourceRowExpansionChangedEventArgsDescription, DataSourceRowExpansionChangedEventArgsDescriptionMetadata, DataSourceRowType, DataSourceRowType_$type, DataSourceSchemaChangedEventArgs, DataSourceSchemaChangedEventArgsDescription, DataSourceSchemaChangedEventArgsDescriptionMetadata, DataSourceSchemaPropertyType, DataSourceSchemaPropertyType_$type, DataSourceSectionHeaderDisplayMode, DataSourceSectionHeaderDisplayMode_$type, DataSourceSpecialRow, DataSourceSpecialRowDescription, DataSourceSpecialRowDescriptionMetadata, DataSourceSummaryScope, DataSourceSummaryScope_$type, DataSourceSupportingCalculationDescription, DataSourceSupportingCalculationDescriptionMetadata, DataSourceVelocityReading, DataSourceVelocityTracker, DataTemplate, DataTemplateMeasureInfo, DataTemplatePassInfo, DataTemplateRenderInfo, DataToolTipLayerDescription, DataToolTipLayerDescriptionMetadata, DataToolTipLayerDescriptionModule, DataToolTipLayerGroupingMode, DataToolTipLayerGroupingMode_$type, DataTooltipGroupedPositionX, DataTooltipGroupedPositionX_$type, DataTooltipGroupedPositionY, DataTooltipGroupedPositionY_$type, DataVisualizationLocaleCs, DataVisualizationLocaleDa, DataVisualizationLocaleDe, DataVisualizationLocaleEn, DataVisualizationLocaleEs, DataVisualizationLocaleFr, DataVisualizationLocaleHu, DataVisualizationLocaleIt, DataVisualizationLocaleJa, DataVisualizationLocaleKo, DataVisualizationLocaleNb, DataVisualizationLocaleNl, DataVisualizationLocalePl, DataVisualizationLocalePt, DataVisualizationLocaleRo, DataVisualizationLocaleSv, DataVisualizationLocaleTr, DataVisualizationLocaleZhHans, DataVisualizationLocaleZhHant, DatePickerDescription, DatePickerDescriptionMetadata, DatePickerDescriptionModule, DateRangeDescriptorDescription, DateRangeDescriptorDescriptionMetadata, DateTimeCellInfoDescription, DateTimeCellInfoDescriptionMetadata, DateTimeColumnDescription, DateTimeColumnDescriptionMetadata, DateTimeColumnDescriptionModule, DateTimeFormat, DateTimeFormatSpecifier, DateTimeFormatSpecifierDescription, DateTimeFormatSpecifierDescriptionMetadata, DateTimeFormatSpecifierDescriptionModule, DateTimeKind_$type, Date_$type, DayOfWeek, DayOfWeek_$type, Debug, Decoder, DecoderExceptionFallback, DecoderExceptionFallbackBuffer, DecoderFallback, DecoderFallbackBuffer, DecoderFallbackException, DecoderReplacementFallback, DecoderReplacementFallbackBuffer, DefaultComparer$1, DefaultDataSourceDataProviderUpdateNotifier, DefaultDataSourceSchema, DefaultDecoder, DefaultEqualityComparer$1, DefaultODataLiteralEmitter, DefaultSectionInformation, DefaultSummaryResult, DefinitionBaseDescription, DefinitionBaseDescriptionMetadata, Delegate_$type, DependencyObject, DependencyObjectNotifier, DependencyPropertiesCollection, DependencyProperty, DependencyPropertyChangedEventArgs, Description, DescriptionJsonValidator, DescriptionPropertyValue, DescriptionRef, DescriptionRefValueChangedEventArgs, DescriptionResult, DescriptionSerializer, DescriptionSerializerBuilder, DescriptionTreeAction, DescriptionTreeActionType_$type, DescriptionTreeBuilder, DescriptionTreeNode, DescriptionTreeReconciler, DescriptionTreeReconciler_TreeModeData, DetrendedPriceOscillatorIndicatorDescription, DetrendedPriceOscillatorIndicatorDescriptionMetadata, DetrendedPriceOscillatorIndicatorDescriptionModule, DeviceUtils, Dictionary$2, DictionaryUtil, Dictionary_EnumerableCollection$3, DiffApplyInfo, DivBridge, DomPortal_$type, DomRenderer_$type, DomWrapper_$type, DomainChartDescription, DomainChartDescriptionMetadata, DomainChartSeriesPointerEventArgsDescription, DomainChartSeriesPointerEventArgsDescriptionMetadata, DotNetCodeGeneratingComponentRendererDataEmitter, DotNetCodeGeneratingComponentRendererHandlerEmitter, DotNetCodeGeneratingComponentRendererModuleEmitter, DoubleAnimator, DoubleCollection, DoubleValueChangedEventArgs, DoubleValueChangedEventArgsDescription, DoubleValueChangedEventArgsDescriptionMetadata, DoughnutChartCoreDescriptionModule, DoughnutChartDefaultTooltipsDescriptionMetadata, DoughnutChartDefaultTooltipsExtendedDescriptionMetadata, DoughnutChartDescription, DoughnutChartDescriptionMetadata, DoughnutChartDescriptionModule, DoughnutChartInteractivityDescriptionModule, DownloadingMultiScaleImageEventArgs, DownloadingMultiScaleImageEventArgsDescription, DownloadingMultiScaleImageEventArgsDescriptionMetadata, EaseOfMovementIndicatorDescription, EaseOfMovementIndicatorDescriptionMetadata, EaseOfMovementIndicatorDescriptionModule, EasingFunctions, EdgeClipper, EdgeComparer, EditRowDefinitionDescription, EditRowDefinitionDescriptionMetadata, EditRowDefinitionDescriptionModule, EditorCellInfoDescription, EditorCellInfoDescriptionMetadata, EditorDefinitionDescription, EditorDefinitionDescriptionMetadata, EditorDefinitionDescriptionModule, EditorRowCellInfoDescription, EditorRowCellInfoDescriptionMetadata, ElevationHelper, ElevationMode, ElevationMode_$type, EllipseGeometry, EllipseGeometryData, EmbeddedRefDescription, Encoding, EntityHandling, EntityHandling_$type, Enum, EnumUtil, Enumerable, EnumerableWrapper, EnumerableWrapperObject, EnumeratorWrapper, EnumeratorWrapperObject, Environment, EqualityComparer$1, ErrorBarCalculatorReference, ErrorBarCalculatorReference_$type, ErrorBarCalculatorType, ErrorBarCalculatorType_$type, ErrorMessageDisplayingEventArgs, EventArgs, EventProxy, ExpansionPanelDescription, ExpansionPanelDescriptionMetadata, ExpansionPanelDescriptionModule, ExpressionSyntax, Extensions, FastFlattener, FastItemColumn, FastItemDateTimeColumn, FastItemIntColumn, FastItemObjectColumn, FastItemsSource, FastItemsSourceEventAction, FastItemsSourceEventAction_$type, FastItemsSourceEventArgs, FastItemsSourceReference, FastIterationDictionary$2, FastReflectionHelper, FastStochasticOscillatorIndicatorDescription, FastStochasticOscillatorIndicatorDescriptionMetadata, FastStochasticOscillatorIndicatorDescriptionModule, FaultCode, FaultException, FaultException$1, FaultReason, FillRule, FillRule_$type, FilterApplyButtonClickEventArgsDescription, FilterApplyButtonClickEventArgsDescriptionMetadata, FilterCancelButtonClickEventArgsDescription, FilterCancelButtonClickEventArgsDescriptionMetadata, FilterCellInfoDescription, FilterCellInfoDescriptionMetadata, FilterDialogRenderCompletedEventArgsDescription, FilterDialogRenderCompletedEventArgsDescriptionMetadata, FilterExpression, FilterExpressionCollection, FilterExpressionDescription, FilterExpressionDescriptionMetadata, FilterExpressionFunctionType, FilterExpressionFunctionType_$type, FilterExpressionOperatorType, FilterExpressionOperatorType_$type, FilterExpressionVisitor, FilterExpressionWrapperType, FilterExpressionWrapperType_$type, FilterFactory, FilterOperandDescription, FilterOperandDescriptionMetadata, FilterOperandDescriptionModule, FilterRowDefinitionDescription, FilterRowDefinitionDescriptionMetadata, FilterRowDefinitionDescriptionModule, FinalValueLayerDescription, FinalValueLayerDescriptionMetadata, FinalValueLayerDescriptionModule, FinancialCalculationDataSourceDescription, FinancialCalculationDataSourceDescriptionMetadata, FinancialCalculationSupportingCalculationsDescription, FinancialCalculationSupportingCalculationsDescriptionMetadata, FinancialChartCoreDescriptionModule, FinancialChartCustomIndicatorArgsDescription, FinancialChartCustomIndicatorArgsDescriptionMetadata, FinancialChartDefaultTemplatesDescriptionMetadata, FinancialChartDefaultTemplatesExtendedDescriptionMetadata, FinancialChartDescription, FinancialChartDescriptionMetadata, FinancialChartDescriptionModule, FinancialDataAdapter, FinancialEventArgsDescription, FinancialEventArgsDescriptionMetadata, FinancialIndicatorDescription, FinancialIndicatorDescriptionMetadata, FinancialLegendDescription, FinancialLegendDescriptionMetadata, FinancialLegendDescriptionModule, FinancialOverlayDescription, FinancialOverlayDescriptionMetadata, FinancialPriceSeriesDescription, FinancialPriceSeriesDescriptionMetadata, FinancialPriceSeriesDescriptionModule, FinancialSeriesDescription, FinancialSeriesDescriptionMetadata, Flattener, FlattenerSettings, FocusOptionsDescription, FocusOptionsDescriptionMetadata, FontDefaults, FontInfo, FontUtil, ForceIndexIndicatorDescription, ForceIndexIndicatorDescriptionMetadata, ForceIndexIndicatorDescriptionModule, FormatException, FormatException2, FormatGroupTextEventArgsDescription, FormatGroupTextEventArgsDescriptionMetadata, FormatLinearGraphLabelEventArgsDescription, FormatLinearGraphLabelEventArgsDescriptionMetadata, FormatRadialGaugeLabelEventArgsDescription, FormatRadialGaugeLabelEventArgsDescriptionMetadata, FormatSpecifier, FormatSpecifierCollection, FormatSpecifierDescription, FormatSpecifierDescriptionMetadata, FormatSpecifierDescriptionModule, FormatSummaryTextEventArgsDescription, FormatSummaryTextEventArgsDescriptionMetadata, Formatting, Formatting_$type, FragmentBaseDescription, FragmentBaseDescriptionMetadata, FrameworkElement, FrameworkElementExtensions, FullStochasticOscillatorIndicatorDescription, FullStochasticOscillatorIndicatorDescriptionMetadata, FullStochasticOscillatorIndicatorDescriptionModule, FunctionFilterExpression, FunctionFilterExpressionDescription, FunctionFilterExpressionDescriptionMetadata, FunnelChartCoreDescriptionModule, FunnelChartDescription, FunnelChartDescriptionMetadata, FunnelChartDescriptionModule, FunnelDataContextDescription, FunnelDataContextDescriptionMetadata, FunnelSliceClickedEventArgsDescription, FunnelSliceClickedEventArgsDescriptionMetadata, FunnelSliceDataContextDescription, FunnelSliceDataContextDescriptionMetadata, FunnelSliceEventArgsDescription, FunnelSliceEventArgsDescriptionMetadata, GC, GenericEnumerable$1, GenericEnumerator$1, GeographicContourLineSeriesDescription, GeographicContourLineSeriesDescriptionMetadata, GeographicContourLineSeriesDescriptionModule, GeographicHighDensityScatterSeriesDescription, GeographicHighDensityScatterSeriesDescriptionMetadata, GeographicHighDensityScatterSeriesDescriptionModule, GeographicMapCoreDescriptionModule, GeographicMapDescription, GeographicMapDescriptionMetadata, GeographicMapDescriptionModule, GeographicMapImageryDescription, GeographicMapImageryDescriptionMetadata, GeographicMapSeriesHostDescription, GeographicMapSeriesHostDescriptionMetadata, GeographicMarkerSeriesBaseDescription, GeographicMarkerSeriesBaseDescriptionMetadata, GeographicMarkerSeriesDescription, GeographicMarkerSeriesDescriptionMetadata, GeographicPolylineSeriesDescription, GeographicPolylineSeriesDescriptionMetadata, GeographicPolylineSeriesDescriptionModule, GeographicProportionalSymbolSeriesBaseDescription, GeographicProportionalSymbolSeriesBaseDescriptionMetadata, GeographicProportionalSymbolSeriesDescription, GeographicProportionalSymbolSeriesDescriptionMetadata, GeographicProportionalSymbolSeriesDescriptionModule, GeographicScatterAreaSeriesDescription, GeographicScatterAreaSeriesDescriptionMetadata, GeographicScatterAreaSeriesDescriptionModule, GeographicShapeSeriesBaseBaseDescription, GeographicShapeSeriesBaseBaseDescriptionMetadata, GeographicShapeSeriesBaseDescription, GeographicShapeSeriesBaseDescriptionMetadata, GeographicShapeSeriesDescription, GeographicShapeSeriesDescriptionMetadata, GeographicShapeSeriesDescriptionModule, GeographicSymbolSeriesBaseDescription, GeographicSymbolSeriesBaseDescriptionMetadata, GeographicSymbolSeriesDescription, GeographicSymbolSeriesDescriptionMetadata, GeographicSymbolSeriesDescriptionModule, GeographicTileSeriesDescription, GeographicTileSeriesDescriptionMetadata, GeographicTileSeriesDescriptionModule, GeographicXYTriangulatingSeriesBaseDescription, GeographicXYTriangulatingSeriesBaseDescriptionMetadata, GeographicXYTriangulatingSeriesDescription, GeographicXYTriangulatingSeriesDescriptionMetadata, Geometry, GeometryCollection, GeometryData, GeometryGroup, GeometryType, GeometryType_$type, GeometryUtil, GetPointsSettings, GetTileImageUriArgs, GetTileImageUriArgsDescription, GetTileImageUriArgsDescriptionMetadata, GotFocusEventArgsDescription, GotFocusEventArgsDescriptionMetadata, GradientDirection, GradientDirection_$type, GradientStop, GradientStopAppearanceData, GridActiveCellChangedEventArgsDescription, GridActiveCellChangedEventArgsDescriptionMetadata, GridAnimationPhaseSettingsDescription, GridAnimationPhaseSettingsDescriptionMetadata, GridAnimationSettingsDescription, GridAnimationSettingsDescriptionMetadata, GridBridge, GridBridgeColumnDefinition, GridBridgeRowDefinition, GridCellEditEndedEventArgsDescription, GridCellEditEndedEventArgsDescriptionMetadata, GridCellEditEventArgsDescription, GridCellEditEventArgsDescriptionMetadata, GridCellEditStartedEventArgsDescription, GridCellEditStartedEventArgsDescriptionMetadata, GridCellEventArgsDescription, GridCellEventArgsDescriptionMetadata, GridCellPositionDescription, GridCellPositionDescriptionMetadata, GridCellPositionDescriptionModule, GridCellValueChangedEventArgsDescription, GridCellValueChangedEventArgsDescriptionMetadata, GridCellValueChangingEventArgsDescription, GridCellValueChangingEventArgsDescriptionMetadata, GridColumnAnimationSettingsDescription, GridColumnAnimationSettingsDescriptionMetadata, GridColumnButtonOptionsDescription, GridColumnButtonOptionsDescriptionMetadata, GridColumnButtonOptionsDescriptionModule, GridColumnFilterOptionsDescription, GridColumnFilterOptionsDescriptionMetadata, GridColumnFilterOptionsDescriptionModule, GridColumnGroupOptionsDescription, GridColumnGroupOptionsDescriptionMetadata, GridColumnGroupOptionsDescriptionModule, GridColumnHideOptionsDescription, GridColumnHideOptionsDescriptionMetadata, GridColumnHideOptionsDescriptionModule, GridColumnMoveOptionsDescription, GridColumnMoveOptionsDescriptionMetadata, GridColumnMoveOptionsDescriptionModule, GridColumnOptionsBaseDescription, GridColumnOptionsBaseDescriptionMetadata, GridColumnOptionsDescription, GridColumnOptionsDescriptionMetadata, GridColumnOptionsDescriptionModule, GridColumnOptionsSectionBaseDescription, GridColumnOptionsSectionBaseDescriptionMetadata, GridColumnOptionsSimpleSectionBaseDescription, GridColumnOptionsSimpleSectionBaseDescriptionMetadata, GridColumnPinOptionsDescription, GridColumnPinOptionsDescriptionMetadata, GridColumnPinOptionsDescriptionModule, GridColumnSortOptionsDescription, GridColumnSortOptionsDescriptionMetadata, GridColumnSortOptionsDescriptionModule, GridColumnSummaryOptionsDescription, GridColumnSummaryOptionsDescriptionMetadata, GridColumnSummaryOptionsDescriptionModule, GridColumnWidthChangedEventArgsDescription, GridColumnWidthChangedEventArgsDescriptionMetadata, GridColumnsAutoGeneratedEventArgsDescription, GridColumnsAutoGeneratedEventArgsDescriptionMetadata, GridColumnsChangedEventArgsDescription, GridColumnsChangedEventArgsDescriptionMetadata, GridCommitCompletedEventArgsDescription, GridCommitCompletedEventArgsDescriptionMetadata, GridCustomFilterRequestedEventArgsDescription, GridCustomFilterRequestedEventArgsDescriptionMetadata, GridDataCommittedEventArgsDescription, GridDataCommittedEventArgsDescriptionMetadata, GridDataCommittingEventArgsDescription, GridDataCommittingEventArgsDescriptionMetadata, GridFilterDialogFilterChangeEventArgsDescription, GridFilterDialogFilterChangeEventArgsDescriptionMetadata, GridFilterDialogOpeningEventArgsDescription, GridFilterDialogOpeningEventArgsDescriptionMetadata, GridFilterDialogViewModelDescription, GridFilterDialogViewModelDescriptionMetadata, GridFilterDialogViewModelGroupingDescription, GridFilterDialogViewModelGroupingDescriptionMetadata, GridFilterDialogViewModelRowDescription, GridFilterDialogViewModelRowDescriptionMetadata, GridFilterExpressionsEventArgsDescription, GridFilterExpressionsEventArgsDescriptionMetadata, GridGroupDescriptionsChangedEventArgsDescription, GridGroupDescriptionsChangedEventArgsDescriptionMetadata, GridRowEditEndedEventArgsDescription, GridRowEditEndedEventArgsDescriptionMetadata, GridRowEditStartedEventArgsDescription, GridRowEditStartedEventArgsDescriptionMetadata, GridSelectedCellRangesChangedEventArgsDescription, GridSelectedCellRangesChangedEventArgsDescriptionMetadata, GridSelectedCellsChangedEventArgsDescription, GridSelectedCellsChangedEventArgsDescriptionMetadata, GridSelectedItemsChangedEventArgsDescription, GridSelectedItemsChangedEventArgsDescriptionMetadata, GridSelectedKeysChangedEventArgsDescription, GridSelectedKeysChangedEventArgsDescriptionMetadata, GridSelectionChangedEventArgsDescription, GridSelectionChangedEventArgsDescriptionMetadata, GridSizeChangedEventArgsDescription, GridSizeChangedEventArgsDescriptionMetadata, GridSortDescriptionsChangedEventArgsDescription, GridSortDescriptionsChangedEventArgsDescriptionMetadata, GridSummaryDescriptionsChangedEventArgsDescription, GridSummaryDescriptionsChangedEventArgsDescriptionMetadata, Group, GroupCollection, GroupDataDescription, GroupDataDescriptionMetadata, Guid, Guid_GuidParseThrowStyle_$type, Guid_GuidResult, Guid_GuidStyles_$type, Guid_ParseFailureKind_$type, HalfEdge, HalfEdgeSet, HashPool$2, HashSet$1, Hashtable, Header, HeaderDescription, HeaderDescriptionMetadata, HeaderRowSeparatorDescription, HeaderRowSeparatorDescriptionMetadata, HeaderRowSeparatorDescriptionModule, HeaderSeparatorDescription, HeaderSeparatorDescriptionMetadata, HeaderSeparatorDescriptionModule, HeatTileGenerator, HeatTileGeneratorDescription, HeatTileGeneratorDescriptionMetadata, HeatTileGeneratorDescriptionModule, HeatTileGeneratorWebWorker, HeatTileGeneratorWorker, HeatTileGeneratorWorkerManager, HeatTileImageCreatedEventArgs, HeatTileScaler, HierarchicalRingSeriesDescription, HierarchicalRingSeriesDescriptionMetadata, HierarchicalRingSeriesDescriptionModule, HighDensityScatterSeriesDescription, HighDensityScatterSeriesDescriptionMetadata, HighDensityScatterSeriesDescriptionModule, HighlightingInfoDescription, HighlightingInfoDescriptionMetadata, HoleDimensionsChangedEventArgsDescription, HoleDimensionsChangedEventArgsDescriptionMetadata, HorizontalAlignment, HorizontalAlignment_$type, HorizontalAnchoredCategorySeriesDescription, HorizontalAnchoredCategorySeriesDescriptionMetadata, HorizontalAnchoredCategorySeriesProxyDescriptionModule, HorizontalRangeCategorySeriesDescription, HorizontalRangeCategorySeriesDescriptionMetadata, HorizontalRangeCategorySeriesProxyDescriptionModule, HorizontalStackedSeriesBaseDescription, HorizontalStackedSeriesBaseDescriptionMetadata, HttpRequestUtil, IArrayList_$type, IArray_$type, IChartItemLegend_$type, IChartLegend_$type, IChartScaleLegend_$type, ICodeGenerationRendererTemplate_$type, ICollection$1_$type, ICollection_$type, IComparable$1_$type, IComparable_$type, IComparer$1_$type, IComparer_$type, IComponentRendererAdapter_$type, IConvertible_$type, ICredentials_$type, IDataLegendSeries_$type, IDataLegendTarget_$type, IDataLegend_$type, IDataObject_$type, IDataSeriesAdapterRule_$type, IDataSourceDataProviderUpdateNotifier_$type, IDataSourceDataProvider_$type, IDataSourceExecutionContext_$type, IDataSourceLocalDataProvider_$type, IDataSourcePage_$type, IDataSourceSchema_$type, IDataSourceSupportsCount_$type, IDataSourceSupportsIndexedAccess_$type, IDataSourceUpdateNotifier_$type, IDataSourceVirtualDataProvider_$type, IDataSource_$type, IDependentRenderer_$type, IDictionary$2_$type, IDictionary_$type, IDisposable_$type, IEasingFunction_$type, IEditableDataSource_$type, IEnumerable$1_$type, IEnumerable_$type, IEnumerator$1_$type, IEnumerator_$type, IEqualityComparer$1_$type, IEqualityComparer_$type, IEquatable$1_$type, IErrorBarCalculator_$type, IExecutionContext_$type, IExternalDataSeriesAdapter_$type, IExternalDataSource_$type, IExternalLocalDataSource_$type, IExternalVirtualDataSource_$type, IFastItemColumn$1_$type, IFastItemColumnInternal_$type, IFastItemColumnPropertyName_$type, IFastItemsSourceProvider_$type, IFastItemsSource_$type, IFilterExpression_$type, IFormatProvider_$type, IFormattable_$type, IFunctionFilterExpression_$type, IGetItemAtIndex_$type, IGrouping$2_$type, IHashPool$2_$type, IIcon_$type, IIndexedPool$1_$type, IInternalLegendOwner_$type, IKeyFrameAnimation_$type, ILegendContext_$type, ILegendOwner_$type, ILegendSeriesInternal_$type, ILegendSeries_$type, ILegendTemplateProvider_$type, IList$1_$type, IList_$type, ILiteralFilterExpression_$type, IMapRenderDeferralHandler_$type, INativeUIContainerBridge_$type, INativeUIContentBridge_$type, INativeUIElementBridge_$type, INativeUIElementFactory_$type, INativeUIGridBridge_$type, INotifyCollectionChanged_$type, INotifyPropertyChanged_$type, IOPath, IOnDemandRender_$type, IOperationFilterExpression_$type, IOrderedEnumerable$1_$type, IOverviewPlusDetailControl_$type, IOverviewPlusDetailPane_$type, IPageCandidatesSink_$type, IPermission_$type, IPool$1_$type, IPropertyReferenceFilterExpression_$type, IQueryProvider_$type, IQueryable$1_$type, IQueryable_$type, IRenderer_$type, IScaleLegendSeries_$type, ISchedulableRender_$type, IScrollerKeyboardListener_$type, IScrollerView_$type, ISectionInformation_$type, ISmartPlaceable_$type, ISummaryResult_$type, ISupportsDataChangeNotifications_$type, ISupportsExpansionChangeNotifications_$type, ITickProvider_$type, ITileGenerator_$type, ITileWorkCompletedSink_$type, ITypeDescriptionPropertyTransforms_$type, IUnknownValuePlotting_$type, IVisualData_$type, IXmlLineInfo_$type, IXmlNamespaceResolver_$type, IZoomSlider_$type, IconDescription, IconDescriptionMetadata, IconDescriptionModule, IgCollection, IgEvent, IgcButtonBridge, IgcCheckboxBridge, IgcDropdownBridge, IgcInputBridge, IgcSliderBridge, IgxAsyncCompletedEventArgs, IgxCancelEventArgs, IgxCancellingMultiScaleImageEventArgs, IgxChildContentComponent, IgxChildContentDynamicModule, IgxChildContentModule, IgxComponentRendererContainerComponent, IgxComponentRendererContainerModule, IgxContentChildCollection, IgxDVInteractivityDynamicModule, IgxDVInteractivityModule, IgxDataContext, IgxDataLegendSeriesContext, IgxDataLegendSeriesValueInfo, IgxDataLegendSummaryColumn, IgxDataSeriesCollection, IgxDataSourceDataProviderSchemaChangedEventArgs, IgxDataSourceRowExpansionChangedEventArgs, IgxDataSourceSchemaChangedEventArgs, IgxDataVisualizationLocaleCsModule, IgxDataVisualizationLocaleDaModule, IgxDataVisualizationLocaleDeModule, IgxDataVisualizationLocaleEnModule, IgxDataVisualizationLocaleEsModule, IgxDataVisualizationLocaleFrModule, IgxDataVisualizationLocaleHuModule, IgxDataVisualizationLocaleItModule, IgxDataVisualizationLocaleJaModule, IgxDataVisualizationLocaleKoModule, IgxDataVisualizationLocaleNbModule, IgxDataVisualizationLocaleNlModule, IgxDataVisualizationLocalePlModule, IgxDataVisualizationLocalePtModule, IgxDataVisualizationLocaleRoModule, IgxDataVisualizationLocaleSvModule, IgxDataVisualizationLocaleTrModule, IgxDataVisualizationLocaleZhHansModule, IgxDataVisualizationLocaleZhHantModule, IgxDateTimeFormatSpecifier, IgxDateTimeFormatSpecifierDynamicModule, IgxDateTimeFormatSpecifierModule, IgxDoubleValueChangedEventArgs, IgxDownloadingMultiScaleImageEventArgs, IgxFilterExpressionCollection, IgxFormatSpecifier, IgxFormatSpecifierCollection, IgxFormatSpecifierDynamicModule, IgxFormatSpecifierModule, IgxGetTileImageUriArgs, IgxHeatTileGenerator, IgxHeatTileGeneratorDynamicModule, IgxHeatTileGeneratorModule, IgxKeyEventArgs, IgxLocalDataSourceDynamicModule, IgxLocalDataSourceModule, IgxNumberFormatSpecifier, IgxNumberFormatSpecifierDynamicModule, IgxNumberFormatSpecifierModule, IgxObjectCollection, IgxPropertyUpdatedEventArgs, IgxProvideCalculatorEventArgs, IgxRectChangedEventArgs, IgxShapeDataSource, IgxShapeDataSourceDynamicModule, IgxShapeDataSourceModule, IgxShapeFilterRecordEventArgs, IgxShapefileRecord, IgxSimpleDefaultTooltipComponent, IgxStockChangedEventArgs, IgxStyle, IgxTemplateContentComponent, IgxTemplateContentDynamicModule, IgxTemplateContentModule, IgxTooltipContainerComponent, IgxTooltipContainerDynamicModule, IgxTooltipContainerModule, IgxTransactionState, IgxTriangulationDataSource, IgxTriangulationStatusEventArgs, IgxUploadDataCompletedEventArgs, IgxUploadStringCompletedEventArgs, Image, ImageCellInfoDescription, ImageCellInfoDescriptionMetadata, ImageColumnDescription, ImageColumnDescriptionMetadata, ImageColumnDescriptionModule, ImageTilesReadyEventArgsDescription, ImageTilesReadyEventArgsDescriptionMetadata, ImagesChangedEventArgsDescription, ImagesChangedEventArgsDescriptionMetadata, IndexOutOfRangeException, IndicatorProxyDescriptionModule, IndicatorsDescriptionModule, InputChangeEventArgsDescription, InputChangeEventArgsDescriptionMetadata, InputDescription, InputDescriptionMetadata, InputDescriptionModule, InputGroupDescription, InputGroupDescriptionMetadata, InputGroupDescriptionModule, InputGroupItemDescription, InputGroupItemDescriptionMetadata, InteractionState, InteractionState_$type, InterpolationMode, InterpolationMode_$type, InterpolationUtil, InvalidOperationException, ItemLegendDescription, ItemLegendDescriptionMetadata, ItemLegendDescriptionModule, ItemToolTipLayerDescription, ItemToolTipLayerDescriptionMetadata, ItemToolTipLayerDescriptionModule, ItemwiseStrategyBasedIndicatorDescription, ItemwiseStrategyBasedIndicatorDescriptionMetadata, IterableWrapper, IteratorWrapper, ItfConverter, JavaScriptSerializer, JsonDictionaryArray, JsonDictionaryItem, JsonDictionaryObject, JsonDictionaryParser, JsonDictionaryValue, JsonDictionaryValueType_$type, JsonWriter, Key, KeyEventArgs, KeyEventArgsDescription, KeyEventArgsDescriptionMetadata, KeyFrameAnimationDirect, KeyFrameAnimationEffectPhase_$type, KeyFrameAnimationFactory, KeyFrameAnimationFill_$type, KeyFrameAnimationPlayState_$type, KeyFrameAnimationTimeline, KeyFrameEffectEasing_$type, KeyFrameEffectTimingDirection_$type, KeyValuePair$2, Key_$type, LRUCache$2, LRUCacheItem$2, LabelAppearanceData, LabelAppearanceDataList, LabelClickEventArgsDescription, LabelClickEventArgsDescriptionMetadata, LabelCollisionInfo, LabelCollisionManager, LabelCollisionManagerCollisionMode_$type, LabelCollisionPlacementPositions_$type, LabelDescription, LabelDescriptionMetadata, LabelDescriptionModule, LambdaExpression, LastMonthExpression, LastMonthExpressionDescription, LastMonthExpressionDescriptionMetadata, LastQuarterExpression, LastQuarterExpressionDescription, LastQuarterExpressionDescriptionMetadata, LastWeekExpression, LastWeekExpressionDescription, LastWeekExpressionDescriptionMetadata, LastYearExpression, LastYearExpressionDescription, LastYearExpressionDescriptionMetadata, LeastSquaresFit, LeftClipper, LegendBaseDescription, LegendBaseDescriptionMetadata, LegendDescription, LegendDescriptionMetadata, LegendDescriptionModule, LegendItemBadgeMode, LegendItemBadgeMode_$type, LegendItemBadgeShape, LegendItemBadgeShape_$type, LegendItemHelper, LegendMouseButtonEventArgsDescription, LegendMouseButtonEventArgsDescriptionMetadata, LegendMouseEventArgsDescription, LegendMouseEventArgsDescriptionMetadata, Line, LineFragmentDescription, LineFragmentDescriptionMetadata, LineFragmentDescriptionModule, LineGeometry, LineGeometryData, LineSegment, LineSegmentData, LineSeriesDescription, LineSeriesDescriptionMetadata, LineSeriesDescriptionModule, LineVisualData, LinearContourValueResolverDescription, LinearContourValueResolverDescriptionMetadata, LinearContourValueResolverDescriptionModule, LinearGaugeCoreDescriptionModule, LinearGaugeDescription, LinearGaugeDescriptionMetadata, LinearGaugeDescriptionModule, LinearGradientBrush, LinearGradientBrushAppearanceData, LinearGraphRangeDescription, LinearGraphRangeDescriptionMetadata, LinearGraphRangeDescriptionModule, LinkedList$1, LinkedListNode$1, List$1, ListSortDirection, ListSortDirection_$type, LiteralFilterExpression, LiteralFilterExpressionDescription, LiteralFilterExpressionDescriptionMetadata, LocalDataSource, LocalDataSourceDescription, LocalDataSourceDescriptionMetadata, LocalDataSourceDescriptionModule, LocalDataSourceViewExpansionNotifier, LocalDataSourceViewUpdateNotifier, Locale, Localization, LostFocusEventArgsDescription, LostFocusEventArgsDescriptionMetadata, MapTileSource, MarkerSeriesDescription, MarkerSeriesDescriptionMetadata, MarketFacilitationIndexIndicatorDescription, MarketFacilitationIndexIndicatorDescriptionMetadata, MarketFacilitationIndexIndicatorDescriptionModule, MarshalByRefObject, MassIndexIndicatorDescription, MassIndexIndicatorDescriptionMetadata, MassIndexIndicatorDescriptionModule, Match, Matcher, MathUtil, MathUtilExtended, Matrix, MatrixTransform, MaxSummaryCalculator, MedianPriceIndicatorDescription, MedianPriceIndicatorDescriptionMetadata, MedianPriceIndicatorDescriptionModule, MemberExpression, MemoryStream, MethodCallExpression, MinSummaryCalculator, ModifierKeys, ModifierKeys_$type, MoneyFlowIndexIndicatorDescription, MoneyFlowIndexIndicatorDescriptionMetadata, MoneyFlowIndexIndicatorDescriptionModule, MouseButton, MouseButtonEventArgs, MouseButton_$type, MouseEventArgs, MovingAverageConvergenceDivergenceIndicatorDescription, MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata, MovingAverageConvergenceDivergenceIndicatorDescriptionModule, MultiColumnComboBoxDescription, MultiColumnComboBoxDescriptionMetadata, MultiColumnComboBoxDescriptionModule, MultiColumnComboBoxTextChangedEventArgsDescription, MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata, MultiColumnComboBoxValueChangedEventArgsDescription, MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata, NamePatcher, NameTable, NameTable_Entry, NameValueCollection, NamespaceHandling_$type, NativeUI, NativeUIBuiltInEvents_$type, NativeUIBuiltInProperties_$type, NativeUIButton, NativeUIButtonClickedEventArgs, NativeUICheckbox, NativeUICheckboxChangeEventArgs, NativeUIChildren, NativeUIComponent, NativeUIComponentBuiltInType_$type, NativeUIComponentHorizontalAlignment_$type, NativeUIComponentVerticalAlignment_$type, NativeUIContainer, NativeUIContent, NativeUIDisplayDensity_$type, NativeUIDropDown, NativeUIDropDownSelectedValueChangedEventArgs, NativeUIElementBridge, NativeUIGrid, NativeUIGridHeightType_$type, NativeUIGridWidthType_$type, NativeUIInput, NativeUIInputChangingEventArgs, NativeUIInputDisplayType_$type, NativeUIInputsFactory, NativeUILabel, NativeUISlider, NativeUISliderValueChangedEventArgs, NegativeVolumeIndexIndicatorDescription, NegativeVolumeIndexIndicatorDescriptionMetadata, NegativeVolumeIndexIndicatorDescriptionModule, NetworkCredential, NewLineHandling_$type, NextMonthExpression, NextMonthExpressionDescription, NextMonthExpressionDescriptionMetadata, NextQuarterExpression, NextQuarterExpressionDescription, NextQuarterExpressionDescriptionMetadata, NextWeekExpression, NextWeekExpressionDescription, NextWeekExpressionDescriptionMetadata, NextYearExpression, NextYearExpressionDescription, NextYearExpressionDescriptionMetadata, NonBlockingStreamReader, NotImplementedException, NotSupportedException, NotifyCollectionChangedAction, NotifyCollectionChangedAction_$type, NotifyCollectionChangedEventArgs, NullReferenceException, NullStream, Nullable, Nullable$1, NumberAbbreviatorDescriptionModule, NumberFormatInfo, NumberFormatSpecifier, NumberFormatSpecifierDescription, NumberFormatSpecifierDescriptionMetadata, NumberFormatSpecifierDescriptionModule, Number_$type, Numeric, NumericAngleAxisDescription, NumericAngleAxisDescriptionMetadata, NumericAngleAxisDescriptionModule, NumericAxisBaseDescription, NumericAxisBaseDescriptionMetadata, NumericCellInfoDescription, NumericCellInfoDescriptionMetadata, NumericColumnDescription, NumericColumnDescriptionMetadata, NumericColumnDescriptionModule, NumericRadiusAxisDescription, NumericRadiusAxisDescriptionMetadata, NumericRadiusAxisDescriptionModule, NumericXAxisDescription, NumericXAxisDescriptionMetadata, NumericXAxisDescriptionModule, NumericYAxisDescription, NumericYAxisDescriptionMetadata, NumericYAxisDescriptionModule, ODataDataSourceFilterExpressionVisitor, ODataDataSourceSchema, ODataLiteralEmitter_$type, ObjectCollection, ObjectDisposedException, ObservableCollection$1, ObservableColorCollection, OffsettableWeekExpression, OffsettableWeekExpressionDescription, OffsettableWeekExpressionDescriptionMetadata, OnBalanceVolumeIndicatorDescription, OnBalanceVolumeIndicatorDescriptionMetadata, OnBalanceVolumeIndicatorDescriptionModule, OnClosedEventArgsDescription, OnClosedEventArgsDescriptionMetadata, OnCollapsedEventArgsDescription, OnCollapsedEventArgsDescriptionMetadata, OnExpandedEventArgsDescription, OnExpandedEventArgsDescriptionMetadata, OnPopupEventArgsDescription, OnPopupEventArgsDescriptionMetadata, OpenStreetMapImageryDescription, OpenStreetMapImageryDescriptionMetadata, OpenStreetMapImageryDescriptionModule, OpenStreetMapTileSource, OperationFilterExpression, OperationFilterExpressionDescription, OperationFilterExpressionDescriptionMetadata, OperatorSelectorClosingEventArgsDescription, OperatorSelectorClosingEventArgsDescriptionMetadata, OperatorSelectorOpeningEventArgsDescription, OperatorSelectorOpeningEventArgsDescriptionMetadata, OperatorSelectorValueChangedEventArgsDescription, OperatorSelectorValueChangedEventArgsDescriptionMetadata, OrdinalTimeXAxisDescription, OrdinalTimeXAxisDescriptionMetadata, OrdinalTimeXAxisDescriptionModule, OverlayProxyDescriptionModule, OverlaysDescriptionModule, PageChangedEventArgsDescription, PageChangedEventArgsDescriptionMetadata, PagePredictionEngine, PagedDataSource, PagedDataSourceDescription, PagedDataSourceDescriptionMetadata, Pair$2, Panel, ParameterExpression, Path, PathFigure, PathFigureCollection, PathFigureData, PathFigureUtil, PathGeometry, PathGeometryData, PathMarkupParser, PathMarkupToken, PathMarkupTokenType_$type, PathSegment, PathSegmentCollection, PathSegmentType, PathSegmentType_$type, PathVisualData, PenLineCap, PenLineCap_$type, PenLineJoin, PenLineJoin_$type, PercentChangeYAxisDescription, PercentChangeYAxisDescriptionMetadata, PercentChangeYAxisDescriptionModule, PercentagePriceOscillatorIndicatorDescription, PercentagePriceOscillatorIndicatorDescriptionMetadata, PercentagePriceOscillatorIndicatorDescriptionModule, PercentageVolumeOscillatorIndicatorDescription, PercentageVolumeOscillatorIndicatorDescriptionMetadata, PercentageVolumeOscillatorIndicatorDescriptionModule, PermissionSet, PermissionState, PermissionState_$type, PieChartBaseDescription, PieChartBaseDescriptionMetadata, PieChartCoreDescriptionModule, PieChartDescription, PieChartDescriptionMetadata, PieChartDescriptionModule, PieSliceDataContextDescription, PieSliceDataContextDescriptionMetadata, PieSliceOthersContextDescription, PieSliceOthersContextDescriptionMetadata, PinnedAreaSeparatorDescription, PinnedAreaSeparatorDescriptionMetadata, PinnedAreaSeparatorDescriptionModule, PlatformConstants, PlatformFormatter, PlatformKeyFrameAnimationFactory, PlatformSpecifierType_$type, PlatformUIElementPropertyAccessorFactory, PlotAreaMouseButtonEventArgsDescription, PlotAreaMouseButtonEventArgsDescriptionMetadata, PlotAreaMouseEventArgsDescription, PlotAreaMouseEventArgsDescriptionMetadata, PointCollection, PointCollectionUtil, PointComparer, PointData, PointDescription, PointSeriesDescription, PointSeriesDescriptionMetadata, PointSeriesDescriptionModule, PointTester, PointUtil, Point_$type, PolarAreaSeriesDescription, PolarAreaSeriesDescriptionMetadata, PolarAreaSeriesDescriptionModule, PolarBaseDescription, PolarBaseDescriptionMetadata, PolarLineSeriesBaseDescription, PolarLineSeriesBaseDescriptionMetadata, PolarLineSeriesDescription, PolarLineSeriesDescriptionMetadata, PolarLineSeriesDescriptionModule, PolarScatterSeriesDescription, PolarScatterSeriesDescriptionMetadata, PolarScatterSeriesDescriptionModule, PolarSplineAreaSeriesDescription, PolarSplineAreaSeriesDescriptionMetadata, PolarSplineAreaSeriesDescriptionModule, PolarSplineSeriesDescription, PolarSplineSeriesDescriptionMetadata, PolarSplineSeriesDescriptionModule, PolyBezierSegment, PolyBezierSegmentData, PolyLineSegment, PolyLineVisualData, PolySimplification, Polygon, PolygonUtil, PolygonVisualData, Polyline, PolylineSegmentData, Pool$1, PopupDescription, PopupDescriptionMetadata, PopupDescriptionModule, PortalManager, PositiveVolumeIndexIndicatorDescription, PositiveVolumeIndexIndicatorDescriptionMetadata, PositiveVolumeIndexIndicatorDescriptionModule, PredictionEnginePageCandidate, PrefixDescription, PrefixDescriptionMetadata, PrefixDescriptionModule, PriceChannelOverlayDescription, PriceChannelOverlayDescriptionMetadata, PriceChannelOverlayDescriptionModule, PriceVolumeTrendIndicatorDescription, PriceVolumeTrendIndicatorDescriptionMetadata, PriceVolumeTrendIndicatorDescriptionModule, PrimaryKeyValueDescription, PrimaryKeyValueDescriptionMetadata, PrimaryKeyValueDescriptionModule, PrimitiveAppearanceData, PrimitiveVisualData, PrimitiveVisualDataList, ProgressiveLoadStatusEventArgsDescription, ProgressiveLoadStatusEventArgsDescriptionMetadata, PromiseFactory, PromiseWrapper, PropertyChangedEventArgs, PropertyChangedEventArgs$1, PropertyEditorDataSourceDescription, PropertyEditorDataSourceDescriptionMetadata, PropertyEditorDescription, PropertyEditorDescriptionMetadata, PropertyEditorDescriptionModule, PropertyEditorDescriptionObjectDescription, PropertyEditorDescriptionObjectDescriptionMetadata, PropertyEditorPanelDescription, PropertyEditorPanelDescriptionMetadata, PropertyEditorPanelDescriptionModule, PropertyEditorPropertyDescriptionButtonClickEventArgsDescription, PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionChangedEventArgsDescription, PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionDescription, PropertyEditorPropertyDescriptionDescriptionMetadata, PropertyEditorPropertyDescriptionDescriptionModule, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata, PropertyMetadata, PropertyPath, PropertyReferenceFilterExpression, PropertyReferenceFilterExpressionDescription, PropertyReferenceFilterExpressionDescriptionMetadata, PropertyUpdatedEventArgs, PropertyUpdatedEventArgsDescription, PropertyUpdatedEventArgsDescriptionMetadata, ProvideCalculatorEventArgs, ProvideCalculatorEventArgsDescription, ProvideCalculatorEventArgsDescriptionMetadata, Q1Expression, Q1ExpressionDescription, Q1ExpressionDescriptionMetadata, Q2Expression, Q2ExpressionDescription, Q2ExpressionDescriptionMetadata, Q3Expression, Q3ExpressionDescription, Q3ExpressionDescriptionMetadata, Q4Expression, Q4ExpressionDescription, Q4ExpressionDescriptionMetadata, QuadTree, QuadTreeBoundingBox, QuadTreeForceVector, QuadTreeNode, Queryable, Queue$1, RadialAreaSeriesDescription, RadialAreaSeriesDescriptionMetadata, RadialAreaSeriesDescriptionModule, RadialBaseDescription, RadialBaseDescriptionMetadata, RadialColumnSeriesDescription, RadialColumnSeriesDescriptionMetadata, RadialColumnSeriesDescriptionModule, RadialGaugeCoreDescriptionModule, RadialGaugeDescription, RadialGaugeDescriptionMetadata, RadialGaugeDescriptionModule, RadialGaugeRangeDescription, RadialGaugeRangeDescriptionMetadata, RadialGaugeRangeDescriptionModule, RadialLineSeriesDescription, RadialLineSeriesDescriptionMetadata, RadialLineSeriesDescriptionModule, RadialPieSeriesDescription, RadialPieSeriesDescriptionMetadata, RadialPieSeriesDescriptionModule, Random, RangeAreaSeriesDescription, RangeAreaSeriesDescriptionMetadata, RangeAreaSeriesDescriptionModule, RangeCategorySeriesDescription, RangeCategorySeriesDescriptionMetadata, RangeColumnSeriesDescription, RangeColumnSeriesDescriptionMetadata, RangeColumnSeriesDescriptionModule, RateOfChangeAndMomentumIndicatorDescription, RateOfChangeAndMomentumIndicatorDescriptionMetadata, RateOfChangeAndMomentumIndicatorDescriptionModule, ReactCodeBehindCodeGeneratingComponentRendererCodeEmitter, ReactMarkupCodeGeneratingComponentRendererCodeEmitter, ReadOnlyCollection$1, ReadOnlyObservableCollection$1, ReadState, ReadState_$type, RearrangedList$1, RearrangedListView, Rect, RectChangedEventArgs, RectChangedEventArgsDescription, RectChangedEventArgsDescriptionMetadata, RectData, RectDescription, RectUtil, Rectangle, RectangleGeometry, RectangleGeometryData, RectangleVisualData, RefValueChangedTarget, ReflectionUtil, RefreshCompletedEventArgsDescription, RefreshCompletedEventArgsDescriptionMetadata, Regex, RegexOptions, RegexOptions_$type, RelativeStrengthIndexIndicatorDescription, RelativeStrengthIndexIndicatorDescriptionMetadata, RelativeStrengthIndexIndicatorDescriptionModule, RemovedShiftedRowInfo, RenderRequestedEventArgsDescription, RenderRequestedEventArgsDescriptionMetadata, RenderingContext, ResponsivePhaseDescription, ResponsivePhaseDescriptionMetadata, ResponsiveStateDescription, ResponsiveStateDescriptionMetadata, ResponsiveStateEnteredEventArgsDescription, ResponsiveStateEnteredEventArgsDescriptionMetadata, ResponsiveStateEnteringEventArgsDescription, ResponsiveStateEnteringEventArgsDescriptionMetadata, ResponsiveStateExitedEventArgsDescription, ResponsiveStateExitedEventArgsDescriptionMetadata, ReverseArrayEnumerator$1, RightClipper, RingDescription, RingDescriptionMetadata, RingSeriesBaseDescription, RingSeriesBaseDescriptionMetadata, RingSeriesDescription, RingSeriesDescriptionMetadata, RingSeriesDescriptionModule, RippleDescription, RippleDescriptionMetadata, RippleDescriptionModule, RotateTransform, RowSeparatorDescription, RowSeparatorDescriptionMetadata, RowSeparatorDescriptionModule, RowSeparatorInfoDescription, RowSeparatorInfoDescriptionMetadata, SRProvider, ScaleLegendDescription, ScaleLegendDescriptionMetadata, ScaleLegendDescriptionModule, ScaleTransform, ScalerParamsDescription, ScalerParamsDescriptionMetadata, ScalerVisibleBounds, ScatterAreaSeriesDescription, ScatterAreaSeriesDescriptionMetadata, ScatterAreaSeriesDescriptionModule, ScatterBaseDescription, ScatterBaseDescriptionMetadata, ScatterContourSeriesDescription, ScatterContourSeriesDescriptionMetadata, ScatterContourSeriesDescriptionModule, ScatterLineSeriesDescription, ScatterLineSeriesDescriptionMetadata, ScatterLineSeriesDescriptionModule, ScatterPolygonSeriesDescription, ScatterPolygonSeriesDescriptionMetadata, ScatterPolygonSeriesDescriptionModule, ScatterPolylineSeriesDescription, ScatterPolylineSeriesDescriptionMetadata, ScatterPolylineSeriesDescriptionModule, ScatterSeriesDescription, ScatterSeriesDescriptionMetadata, ScatterSeriesDescriptionModule, ScatterSplineSeriesDescription, ScatterSplineSeriesDescriptionMetadata, ScatterSplineSeriesDescriptionModule, ScatterTriangulationSeriesDescription, ScatterTriangulationSeriesDescriptionMetadata, SchedulableRenderWrapper, ScrollbarStyle_$type, Scroller, ScrollerScrollingEventArgs, ScrollerView, SectionData, SectionDataStartIndexComparer, SectionDataUndisplacedStartIndexComparer, SectionFooterDescription, SectionFooterDescriptionMetadata, SectionFooterDescriptionModule, SectionHeaderCellInfoDescription, SectionHeaderCellInfoDescriptionMetadata, SectionHeaderDescription, SectionHeaderDescriptionMetadata, SectionHeaderDescriptionModule, SectionInformationDescription, SectionInformationDescriptionMetadata, SectionMap, SectionSearchData, SecurityAction, SecurityAction_$type, SeekOrigin, SegmentData, SelectAllCheckboxChangedEventArgsDescription, SelectAllCheckboxChangedEventArgsDescriptionMetadata, SelectedItemChangedEventArgsDescription, SelectedItemChangedEventArgsDescriptionMetadata, SelectedItemChangingEventArgsDescription, SelectedItemChangingEventArgsDescriptionMetadata, SelectedItemsChangedEventArgsDescription, SelectedItemsChangedEventArgsDescriptionMetadata, SelectedItemsChangingEventArgsDescription, SelectedItemsChangingEventArgsDescriptionMetadata, SelectedValueChangedEventArgsDescription, SelectedValueChangedEventArgsDescriptionMetadata, SelectionChangedEventArgsDescription, SelectionChangedEventArgsDescriptionMetadata, SeriesDescription, SeriesDescriptionMetadata, SeriesViewerDescription, SeriesViewerDescriptionMetadata, SeriesViewerManipulationEventArgsDescription, SeriesViewerManipulationEventArgsDescriptionMetadata, Shape, ShapeDataSourceDescription, ShapeDataSourceDescriptionMetadata, ShapeDataSourceDescriptionModule, ShapeFileUtil, ShapeFilterRecordEventArgs, ShapeFilterRecordEventArgsDescription, ShapeFilterRecordEventArgsDescriptionMetadata, ShapeSeriesBaseDescription, ShapeSeriesBaseDescriptionMetadata, ShapeTags, ShapeType, ShapeType_$type, ShapefileConverter, ShapefileRecord, ShapefileRecordDescription, ShapefileRecordDescriptionMetadata, SimpleCategorySeriesRule, SimpleDefaultTooltipDescriptionMetadata, SimpleDefaultTooltipExtendedDescriptionMetadata, SimpleFinancialPriceSeriesRule, SimpleScatterSeriesRule, Size, SizeData, SizeDescription, SizeScaleDescription, SizeScaleDescriptionMetadata, SizeScaleDescriptionModule, SliceClickEventArgsDescription, SliceClickEventArgsDescriptionMetadata, SliceEventArgsDescription, SliceEventArgsDescriptionMetadata, SlowStochasticOscillatorIndicatorDescription, SlowStochasticOscillatorIndicatorDescriptionMetadata, SlowStochasticOscillatorIndicatorDescriptionModule, SmartPlaceableWrapper$1, SmartPlacer, SmartPosition, SmartPosition_$type, SolidBrushAppearanceData, SortDescription, SortDescriptionCollection, SortDescriptionDescription, SortDescriptionDescriptionMetadata, SortIndicatorRenderCompletedEventArgsDescription, SortIndicatorRenderCompletedEventArgsDescriptionMetadata, SortedList$1, SpanBridge, SparklineCoreDescriptionModule, SparklineDescription, SparklineDescriptionMetadata, SparklineDescriptionModule, SpiralFlattener, SpiralTodo, SplineAreaFragmentDescription, SplineAreaFragmentDescriptionMetadata, SplineAreaFragmentDescriptionModule, SplineAreaSeriesDescription, SplineAreaSeriesDescriptionMetadata, SplineAreaSeriesDescriptionModule, SplineFragmentBaseDescription, SplineFragmentBaseDescriptionMetadata, SplineFragmentDescription, SplineFragmentDescriptionMetadata, SplineFragmentDescriptionModule, SplineSeriesBaseDescription, SplineSeriesBaseDescriptionMetadata, SplineSeriesDescription, SplineSeriesDescriptionMetadata, SplineSeriesDescriptionModule, Stack$1, StackPool$1, Stacked100AreaSeriesDescription, Stacked100AreaSeriesDescriptionMetadata, Stacked100AreaSeriesDescriptionModule, Stacked100BarSeriesDescription, Stacked100BarSeriesDescriptionMetadata, Stacked100BarSeriesDescriptionModule, Stacked100ColumnSeriesDescription, Stacked100ColumnSeriesDescriptionMetadata, Stacked100ColumnSeriesDescriptionModule, Stacked100LineSeriesDescription, Stacked100LineSeriesDescriptionMetadata, Stacked100LineSeriesDescriptionModule, Stacked100SplineAreaSeriesDescription, Stacked100SplineAreaSeriesDescriptionMetadata, Stacked100SplineAreaSeriesDescriptionModule, Stacked100SplineSeriesDescription, Stacked100SplineSeriesDescriptionMetadata, Stacked100SplineSeriesDescriptionModule, StackedAreaSeriesDescription, StackedAreaSeriesDescriptionMetadata, StackedAreaSeriesDescriptionModule, StackedBarSeriesDescription, StackedBarSeriesDescriptionMetadata, StackedBarSeriesDescriptionModule, StackedColumnSeriesDescription, StackedColumnSeriesDescriptionMetadata, StackedColumnSeriesDescriptionModule, StackedFragmentSeriesDescription, StackedFragmentSeriesDescriptionMetadata, StackedFragmentSeriesDescriptionModule, StackedLineSeriesDescription, StackedLineSeriesDescriptionMetadata, StackedLineSeriesDescriptionModule, StackedSeriesBaseDescription, StackedSeriesBaseDescriptionMetadata, StackedSeriesCreatedEventArgsDescription, StackedSeriesCreatedEventArgsDescriptionMetadata, StackedSplineAreaSeriesDescription, StackedSplineAreaSeriesDescriptionMetadata, StackedSplineAreaSeriesDescriptionModule, StackedSplineSeriesDescription, StackedSplineSeriesDescriptionMetadata, StackedSplineSeriesDescriptionModule, StandardDeviationIndicatorDescription, StandardDeviationIndicatorDescriptionMetadata, StandardDeviationIndicatorDescriptionModule, StandardLegendItems_$type, StepAreaSeriesDescription, StepAreaSeriesDescriptionMetadata, StepAreaSeriesDescriptionModule, StepLineSeriesDescription, StepLineSeriesDescriptionMetadata, StepLineSeriesDescriptionModule, StochRSIIndicatorDescription, StochRSIIndicatorDescriptionMetadata, StochRSIIndicatorDescriptionModule, StockChangedEventArgs, StockChangedEventArgsDescription, StockChangedEventArgsDescriptionMetadata, StockDataGenerator, StockDataLookup, StockDetails, StockInfo, StockPopulateEventArgsDescription, StockPopulateEventArgsDescriptionMetadata, StockPosition, StockPriceHistory, StockPricePoint, StraightNumericAxisBaseDescription, StraightNumericAxisBaseDescriptionMetadata, StrategyBasedIndicatorDescription, StrategyBasedIndicatorDescriptionMetadata, Stream, StreamReader, StreamWriter, Stretch, Stretch_$type, StringBuilder, StringComparer, StringReader, StringWriter, String_$type, Style, StyleDescription, StyleDescriptionMetadata, StyleSelectorDescription, StyleSelectorDescriptionMetadata, StyleShapeEventArgsDescription, StyleShapeEventArgsDescriptionMetadata, SubCollectionsRule, SuffixDescription, SuffixDescriptionMetadata, SumSummaryCalculator, SummaryCalculator, SummaryCellInfoDescription, SummaryCellInfoDescriptionMetadata, SummaryChangedEventArgsDescription, SummaryChangedEventArgsDescriptionMetadata, SummaryChooserDescriptionModule, SummaryDataDescription, SummaryDataDescriptionMetadata, SummaryDescription, SummaryDescriptionCollection, SummaryGroup, SummaryOperand, SummaryOperand_$type, SummaryResultDescription, SummaryResultDescriptionMetadata, SummaryRowDescription, SummaryRowDescriptionMetadata, SummaryRowRootDescription, SummaryRowRootDescriptionMetadata, SummaryRowRootDescriptionModule, SummaryRowSectionDescription, SummaryRowSectionDescriptionMetadata, SummaryRowSectionDescriptionModule, SweepDirection, SweepDirection_$type, SyncableObservableCollection$1, SyncableObservableCollection$2, SyncableObservableCollectionChangedListener_$type, SynchronizedReader, SynchronizedWriter, SystemException, TRIXIndicatorDescription, TRIXIndicatorDescriptionMetadata, TRIXIndicatorDescriptionModule, TSCodeGeneratingComponentRendererDataEmitter, TSCodeGeneratingComponentRendererHandlerEmitter, TSCodeGeneratingComponentRendererModuleEmitter, Task, Task$1, TaskCompletionSource$1, TaskFactory, TaskStatus, TaskStatus_$type, TemplateCellInfoDescription, TemplateCellInfoDescriptionMetadata, TemplateCellUpdatingEventArgsDescription, TemplateCellUpdatingEventArgsDescriptionMetadata, TemplateColumnDescription, TemplateColumnDescriptionMetadata, TemplateColumnDescriptionModule, TemplateContentDescriptionModule, TemplateContentExtendedDescriptionModule, TemplateHeaderCellInfoDescription, TemplateHeaderCellInfoDescriptionMetadata, TemplateHeaderCellUpdatingEventArgsDescription, TemplateHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateHeaderDescription, TemplateHeaderDescriptionMetadata, TemplateHeaderDescriptionModule, TemplateSectionHeaderCellInfoDescription, TemplateSectionHeaderCellInfoDescriptionMetadata, TemplateSectionHeaderCellUpdatingEventArgsDescription, TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateSectionHeaderDescription, TemplateSectionHeaderDescriptionMetadata, TemplateSectionHeaderDescriptionModule, TextBlock, TextCellInfoDescription, TextCellInfoDescriptionMetadata, TextChangedEventArgsDescription, TextChangedEventArgsDescriptionMetadata, TextColumnDescription, TextColumnDescriptionMetadata, TextColumnDescriptionModule, TextFontMetrics, TextHeaderCellInfoDescription, TextHeaderCellInfoDescriptionMetadata, TextHeaderDescription, TextHeaderDescriptionMetadata, TextHeaderDescriptionModule, TextReader, TextReader_NullTextReader, TextWriter, TextWriter_NullTextWriter, Thickness, ThisMonthExpression, ThisMonthExpressionDescription, ThisMonthExpressionDescriptionMetadata, ThisQuarterExpression, ThisQuarterExpressionDescription, ThisQuarterExpressionDescriptionMetadata, ThisWeekExpression, ThisWeekExpressionDescription, ThisWeekExpressionDescriptionMetadata, ThisYearExpression, ThisYearExpressionDescription, ThisYearExpressionDescriptionMetadata, Thread, Tile, TileGeneratorDescription, TileGeneratorDescriptionMetadata, TileGeneratorMapImageryDescription, TileGeneratorMapImageryDescriptionMetadata, TileGeneratorMapImageryDescriptionModule, TileGeneratorTileSource, TileImageCreatedEventArgs, TileImageZoomChangingEventArgs, TilePositionComparer, TileSeriesDescription, TileSeriesDescriptionMetadata, TileSeriesDescriptionModule, TileWorkCompletedSink, TileWorkSettings, TimeAxisBaseDescription, TimeAxisBaseDescriptionMetadata, TimeAxisBreakDescription, TimeAxisBreakDescriptionMetadata, TimeAxisBreakDescriptionModule, TimeAxisIntervalDescription, TimeAxisIntervalDescriptionMetadata, TimeAxisIntervalDescriptionModule, TimeAxisLabelFormatDescription, TimeAxisLabelFormatDescriptionMetadata, TimeAxisLabelFormatDescriptionModule, TimeXAxisDescription, TimeXAxisDescriptionMetadata, TimeXAxisDescriptionModule, TodayExpression, TodayExpressionDescription, TodayExpressionDescriptionMetadata, TomorrowExpression, TomorrowExpressionDescription, TomorrowExpressionDescriptionMetadata, TooltipContainerDescriptionModule, TooltipContainerExtendedDescriptionModule, TopClipper, TouchGestureEventArgs, TouchGestureRecognizer, TouchGestureState_$type, TouchHistoryItem, TouchPointInfo, TouchVelocityReading, TouchVelocityTracker, Transaction, TransactionCommit, TransactionEvent, TransactionEvent_$type, TransactionHistory, TransactionKeyEqualityComparer, TransactionPendingState, TransactionPendingState_$type, TransactionService, TransactionState, TransactionStateDescription, TransactionStateDescriptionMetadata, TransactionType, TransactionType_$type, Transform, TransformCollection, TransformGroup, TransformMatrixHelpler, TranslateTransform, TreemapDescription, TreemapDescriptionMetadata, TreemapDescriptionModule, TreemapNodePointerEventArgsDescription, TreemapNodePointerEventArgsDescriptionMetadata, TreemapNodeStyleDescription, TreemapNodeStyleDescriptionMetadata, TreemapNodeStyleDescriptionModule, TreemapNodeStyleMappingDescription, TreemapNodeStyleMappingDescriptionMetadata, TreemapNodeStyleMappingDescriptionModule, TreemapNodeStylingEventArgsDescription, TreemapNodeStylingEventArgsDescriptionMetadata, TrendCalculators, TrendLineType, TrendLineType_$type, Triangle, TriangulationDataSourceDescription, TriangulationDataSourceDescriptionMetadata, TriangulationSource, TriangulationSourcePointRecord, TriangulationStatusEventArgs, TriangulationStatusEventArgsDescription, TriangulationStatusEventArgsDescriptionMetadata, Triangulator, TriangulatorContext, Tuple, Tuple$2, Tuple$3, Type, TypeDescriptionCleanups, TypeDescriptionContext, TypeDescriptionMetadata, TypeDescriptionPlatform, TypeDescriptionPlatform_$type, TypeDescriptionPropretyTransforms, TypeDescriptionWellKnownType, TypeDescriptionWellKnownType_$type, TypeRegistrar, TypicalPriceIndicatorDescription, TypicalPriceIndicatorDescriptionMetadata, TypicalPriceIndicatorDescriptionModule, UIElement, UIElementCollection, UIElementPropertyAccessor, UIElementPropertyAccessorFactory, UIElementPropertyId_$type, UTF8Encoding, UTF8Encoding_UTF8Decoder, UltimateOscillatorIndicatorDescription, UltimateOscillatorIndicatorDescriptionMetadata, UltimateOscillatorIndicatorDescriptionModule, UnicodeEncoding, UnknownValuePlotting, UnknownValuePlotting_$type, UnsetValue, UploadDataCompletedEventArgs, UploadDataCompletedEventArgsDescription, UploadDataCompletedEventArgsDescriptionMetadata, UploadStringCompletedEventArgs, UploadStringCompletedEventArgsDescription, UploadStringCompletedEventArgsDescriptionMetadata, Uri, UriKind, UriKind_$type, UriParser, ValueBrushScaleDescription, ValueBrushScaleDescriptionMetadata, ValueBrushScaleDescriptionModule, ValueOverlayDescription, ValueOverlayDescriptionMetadata, ValueOverlayDescriptionModule, ValueType, VerticalAlignment, VerticalAlignment_$type, VerticalAnchoredCategorySeriesDescription, VerticalAnchoredCategorySeriesDescriptionMetadata, VerticalSeparatorCellInfoDescription, VerticalSeparatorCellInfoDescriptionMetadata, VerticalStackedSeriesBaseDescription, VerticalStackedSeriesBaseDescriptionMetadata, VirtualDataSource, VirtualDataSourceDescription, VirtualDataSourceDescriptionMetadata, Visibility, Visibility_$type, VisualDataPixelScalingOptions, VoidEventArgsDescription, VoidEventArgsDescriptionMetadata, Void_$type, WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter, WPFXamlCodeGeneratingComponentRendererCodeEmitter, WaterfallSeriesDescription, WaterfallSeriesDescriptionMetadata, WaterfallSeriesDescriptionModule, WeakReference, WebActivePaneEventArgsDescription, WebActivePaneEventArgsDescriptionMetadata, WebAvatarDescription, WebAvatarDescriptionMetadata, WebAvatarDescriptionModule, WebBadgeDescription, WebBadgeDescriptionMetadata, WebBadgeDescriptionModule, WebButtonBaseDescription, WebButtonBaseDescriptionMetadata, WebButtonBaseDescriptionModule, WebButtonDescription, WebButtonDescriptionMetadata, WebButtonDescriptionModule, WebCalendarBaseDescription, WebCalendarBaseDescriptionMetadata, WebCalendarBaseDescriptionModule, WebCalendarDateEventArgsDescription, WebCalendarDateEventArgsDescriptionMetadata, WebCalendarDescription, WebCalendarDescriptionMetadata, WebCalendarDescriptionModule, WebCardActionsDescription, WebCardActionsDescriptionMetadata, WebCardActionsDescriptionModule, WebCardContentDescription, WebCardContentDescriptionMetadata, WebCardContentDescriptionModule, WebCardDescription, WebCardDescriptionMetadata, WebCardDescriptionModule, WebCardHeaderDescription, WebCardHeaderDescriptionMetadata, WebCardHeaderDescriptionModule, WebCardMediaDescription, WebCardMediaDescriptionMetadata, WebCardMediaDescriptionModule, WebCheckboxBaseDescription, WebCheckboxBaseDescriptionMetadata, WebCheckboxBaseDescriptionModule, WebCheckboxDescription, WebCheckboxDescriptionMetadata, WebCheckboxDescriptionModule, WebChipDescription, WebChipDescriptionMetadata, WebChipDescriptionModule, WebCircularGradientDescription, WebCircularGradientDescriptionMetadata, WebCircularGradientDescriptionModule, WebCircularProgressDescription, WebCircularProgressDescriptionMetadata, WebCircularProgressDescriptionModule, WebClient, WebComponentBoolValueChangedEventArgsDescription, WebComponentBoolValueChangedEventArgsDescriptionMetadata, WebComponentDataValueChangedEventArgsDescription, WebComponentDataValueChangedEventArgsDescriptionMetadata, WebComponentDateValueChangedEventArgsDescription, WebComponentDateValueChangedEventArgsDescriptionMetadata, WebComponentValueChangedEventArgsDescription, WebComponentValueChangedEventArgsDescriptionMetadata, WebComponentsCodeBehindCodeGeneratingComponentRendererCodeEmitter, WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter, WebContentPaneDescription, WebContentPaneDescriptionMetadata, WebContentPaneDescriptionModule, WebDockManagerDescription, WebDockManagerDescriptionMetadata, WebDockManagerDescriptionModule, WebDockManagerLayoutDescription, WebDockManagerLayoutDescriptionMetadata, WebDockManagerLayoutDescriptionModule, WebDockManagerPaneDescription, WebDockManagerPaneDescriptionMetadata, WebDockManagerPaneDescriptionModule, WebDockManagerPointDescription, WebDockManagerPointDescriptionMetadata, WebDockManagerPointDescriptionModule, WebDockManagerResourceStringsDescription, WebDockManagerResourceStringsDescriptionMetadata, WebDockPaneActionDescription, WebDockPaneActionDescriptionMetadata, WebDockingIndicatorDescription, WebDockingIndicatorDescriptionMetadata, WebDocumentHostDescription, WebDocumentHostDescriptionMetadata, WebDocumentHostDescriptionModule, WebDropdownDescription, WebDropdownDescriptionMetadata, WebDropdownDescriptionModule, WebDropdownGroupDescription, WebDropdownGroupDescriptionMetadata, WebDropdownGroupDescriptionModule, WebDropdownHeaderDescription, WebDropdownHeaderDescriptionMetadata, WebDropdownHeaderDescriptionModule, WebDropdownItemComponentEventArgsDescription, WebDropdownItemComponentEventArgsDescriptionMetadata, WebDropdownItemDescription, WebDropdownItemDescriptionMetadata, WebDropdownItemDescriptionModule, WebExpansionPanelComponentEventArgsDescription, WebExpansionPanelComponentEventArgsDescriptionMetadata, WebExpansionPanelDescription, WebExpansionPanelDescriptionMetadata, WebExpansionPanelDescriptionModule, WebFloatPaneActionDescription, WebFloatPaneActionDescriptionMetadata, WebFloatingPaneResizeEventArgsDescription, WebFloatingPaneResizeEventArgsDescriptionMetadata, WebFloatingPaneResizeMoveEventArgsDescription, WebFloatingPaneResizeMoveEventArgsDescriptionMetadata, WebFormDataDescription, WebFormDataDescriptionMetadata, WebFormDataEventArgsDescription, WebFormDataEventArgsDescriptionMetadata, WebFormDescription, WebFormDescriptionMetadata, WebFormDescriptionModule, WebHeaderCollection, WebIconButtonDescription, WebIconButtonDescriptionMetadata, WebIconButtonDescriptionModule, WebIconDescription, WebIconDescriptionMetadata, WebIconDescriptionModule, WebInputBaseDescription, WebInputBaseDescriptionMetadata, WebInputBaseDescriptionModule, WebInputDescription, WebInputDescriptionMetadata, WebInputDescriptionModule, WebLinearProgressDescription, WebLinearProgressDescriptionMetadata, WebLinearProgressDescriptionModule, WebListDescription, WebListDescriptionMetadata, WebListDescriptionModule, WebListHeaderDescription, WebListHeaderDescriptionMetadata, WebListHeaderDescriptionModule, WebListItemDescription, WebListItemDescriptionMetadata, WebListItemDescriptionModule, WebMaskInputDescription, WebMaskInputDescriptionMetadata, WebMaskInputDescriptionModule, WebMoveFloatingPaneActionDescription, WebMoveFloatingPaneActionDescriptionMetadata, WebMoveTabActionDescription, WebMoveTabActionDescriptionMetadata, WebNavDrawerDescription, WebNavDrawerDescriptionMetadata, WebNavDrawerDescriptionModule, WebNavDrawerHeaderItemDescription, WebNavDrawerHeaderItemDescriptionMetadata, WebNavDrawerHeaderItemDescriptionModule, WebNavDrawerItemDescription, WebNavDrawerItemDescriptionMetadata, WebNavDrawerItemDescriptionModule, WebNavbarDescription, WebNavbarDescriptionMetadata, WebNavbarDescriptionModule, WebNumberEventArgsDescription, WebNumberEventArgsDescriptionMetadata, WebPaneCloseEventArgsDescription, WebPaneCloseEventArgsDescriptionMetadata, WebPaneDragActionDescription, WebPaneDragActionDescriptionMetadata, WebPaneDragEndEventArgsDescription, WebPaneDragEndEventArgsDescriptionMetadata, WebPaneDragOverEventArgsDescription, WebPaneDragOverEventArgsDescriptionMetadata, WebPaneDragStartEventArgsDescription, WebPaneDragStartEventArgsDescriptionMetadata, WebPaneHeaderConnectionEventArgsDescription, WebPaneHeaderConnectionEventArgsDescriptionMetadata, WebPaneHeaderElementDescription, WebPaneHeaderElementDescriptionMetadata, WebPanePinnedEventArgsDescription, WebPanePinnedEventArgsDescriptionMetadata, WebProgressBaseDescription, WebProgressBaseDescriptionMetadata, WebProgressBaseDescriptionModule, WebRadioDescription, WebRadioDescriptionMetadata, WebRadioDescriptionModule, WebRadioGroupDescription, WebRadioGroupDescriptionMetadata, WebRadioGroupDescriptionModule, WebRangeSliderDescription, WebRangeSliderDescriptionMetadata, WebRangeSliderDescriptionModule, WebRangeSliderValueDescription, WebRangeSliderValueDescriptionMetadata, WebRangeSliderValueEventArgsDescription, WebRangeSliderValueEventArgsDescriptionMetadata, WebRatingDescription, WebRatingDescriptionMetadata, WebRatingDescriptionModule, WebRatingSymbolDescription, WebRatingSymbolDescriptionMetadata, WebRatingSymbolDescriptionModule, WebRippleDescription, WebRippleDescriptionMetadata, WebRippleDescriptionModule, WebSliderBaseDescription, WebSliderBaseDescriptionMetadata, WebSliderBaseDescriptionModule, WebSliderDescription, WebSliderDescriptionMetadata, WebSliderDescriptionModule, WebSliderLabelDescription, WebSliderLabelDescriptionMetadata, WebSliderLabelDescriptionModule, WebSnackbarDescription, WebSnackbarDescriptionMetadata, WebSnackbarDescriptionModule, WebSplitPaneDescription, WebSplitPaneDescriptionMetadata, WebSplitPaneDescriptionModule, WebSwitchDescription, WebSwitchDescriptionMetadata, WebSwitchDescriptionModule, WebTabGroupPaneDescription, WebTabGroupPaneDescriptionMetadata, WebTabGroupPaneDescriptionModule, WebTabHeaderConnectionEventArgsDescription, WebTabHeaderConnectionEventArgsDescriptionMetadata, WebTabHeaderElementDescription, WebTabHeaderElementDescriptionMetadata, WebThemeControllerDescription, WebThemeControllerDescriptionMetadata, WebToastDescription, WebToastDescriptionMetadata, WebToastDescriptionModule, WebTreeDescription, WebTreeDescriptionMetadata, WebTreeDescriptionModule, WebTreeItemComponentEventArgsDescription, WebTreeItemComponentEventArgsDescriptionMetadata, WebTreeItemDescription, WebTreeItemDescriptionMetadata, WebTreeItemDescriptionModule, WebTreeSelectionOptionsEventArgsDescription, WebTreeSelectionOptionsEventArgsDescriptionMetadata, WebValueChangedEventArgsDescription, WebValueChangedEventArgsDescriptionMetadata, WeightedCloseIndicatorDescription, WeightedCloseIndicatorDescriptionMetadata, WeightedCloseIndicatorDescriptionModule, WhitespaceHandling, WhitespaceHandling_$type, WilliamsPercentRIndicatorDescription, WilliamsPercentRIndicatorDescriptionMetadata, WilliamsPercentRIndicatorDescriptionModule, WrapperExpression, WrapperExpressionDescription, WrapperExpressionDescriptionMetadata, WriteState, WriteState_$type, WriteableBitmap, XAttribute, XBaseDataType, XBaseDataType_$type, XBaseField, XContainer, XDocument, XElement, XName, XNamespace, XNode, XObject, XYChartDescription, XYChartDescriptionMetadata, XamMultiScaleImage, XamMultiScaleImageView, XamMultiScaleTileSource, XmlAttribute_$type, XmlChar, XmlConvert, XmlDocument_$type, XmlElement_$type, XmlException, XmlInputStream, XmlLinkedNode_$type, XmlNameTable, XmlNamedNodeMap_$type, XmlNamespaceManager, XmlNamespaceManager_NsDecl, XmlNamespaceManager_NsScope, XmlNamespaceScope_$type, XmlNodeList_$type, XmlNodeType, XmlNodeType_$type, XmlNode_$type, XmlParserContext, XmlParserContext_ContextItem, XmlReader, XmlResolver, XmlSpace, XmlSpace_$type, XmlStreamReader, XmlTextReader, XmlTextReader_DtdInputStateStack, XmlTextReader_DtdInputState_$type, XmlTextReader_TagName, XmlTextReader_XmlAttributeTokenInfo, XmlTextReader_XmlTokenInfo, XmlTextWriter, XmlTextWriter_StringUtil, XmlTextWriter_XmlDeclState_$type, XmlTextWriter_XmlNodeInfo, XmlUrlResolver, XmlUtils, XmlWriter, YearToDateExpression, YearToDateExpressionDescription, YearToDateExpressionDescriptionMetadata, YesterdayExpression, YesterdayExpressionDescription, YesterdayExpressionDescriptionMetadata, ZoomSliderDescription, ZoomSliderDescriptionMetadata, ZoomSliderDescriptionModule, ZoomSliderResolvingAxisValueEventArgsDescription, ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata, a$, addBrushPaletteThemeEntry, addPaletteThemeEntry, addTextThemeEntry, arrayClear, arrayClear1, arrayContains, arrayCopy, arrayCopy1, arrayCopy2, arrayCopyTo, arrayFindByName, arrayGetLength, arrayGetRank, arrayGetValue, arrayIndexOf1, arrayInsert, arrayInsertRange, arrayInsertRange1, arrayLast, arrayListCreate, arrayRemoveAt, arrayRemoveItem, arrayResize, arrayShallowClone, b$, b64toUint8Array, boolCompare, boolToDecimal, boolToDouble, boolToInt16, boolToInt32, boolToInt64, boolToSingle, boolToString, boolToUInt16, boolToUInt32, boolToUInt64, boxArray$1, brushCollectionToString, brushToString, callStaticConstructors, ceil10, charMaxValue, charMinValue, colorCollectionToString, colorToString, compareTo, createGuid, d$, dateAdd, dateAddDays, dateAddHours, dateAddMinutes, dateAddMonths, dateAddSeconds, dateAddYears, dateEquals, dateFromFileTime, dateFromFileTimeUtc, dateFromMilliseconds, dateFromTicks, dateFromValues, dateGetDate, dateGetMonth, dateGetTimeOfDay, dateIsDST, dateIsLeapYear, dateKind, dateMaxValue, dateMinValue, dateNow, dateParse, dateParseExact, dateStdTimezoneOffset, dateSubtract, dateToFileTime, dateToString, dateToStringFormat, dateToday, dateTryParse, daysInMonth, decimalAdjust, defaultDVDateParse, delegateCombine, delegateRemove, endsWith1, ensureBool, ensureEnum, enumGetBox, enumToString, floor10, fromBrushCollection, fromColorCollection, fromDict, fromEn, fromEnum, fromOADate, fromPoint, fromRect, fromSize, fromSpinal, getAllPropertyNames, getBoxIfEnum, getColorStringSafe, getEn, getEnumerator, getEnumeratorObject, getInstanceType, getModifiedProps, ieeeRemainder, indexOfAny, initializePropertiesFromCss, intDivide, intSToU, intToString, intToString1, isDigit, isDigit1, isInfinity, isLetter, isLetterOrDigit, isLower, isNaN_, isNegativeInfinity, isNumber, isPoint, isPositiveInfinity, isRect, isSize, isValidProp, lastIndexOfAny, log10, logBase, markDep, markEnum, markStruct, markType, n$, netRegexToJS, nullableAdd, nullableConcat, nullableDivide, nullableEquals, nullableGreaterThan, nullableGreaterThanOrEqual, nullableIsNull, nullableLessThan, nullableLessThanOrEqual, nullableModulus, nullableMultiply, nullableNotEquals, nullableSubtract, numberToString, numberToString1, numberToString2, padLeft, padRight, parseBool, parseInt16_1, parseInt16_2, parseInt32_1, parseInt32_2, parseInt64_1, parseInt64_2, parseInt8_1, parseInt8_2, parseIntCore, parseNumber, parseNumber1, parseUInt16_1, parseUInt16_2, parseUInt32_1, parseUInt32_2, parseUInt64_1, parseUInt64_2, parseUInt8_1, parseUInt8_2, pointFromLiteral, pointToLiteral, pointToString, rectFromLiteral, rectToLiteral, rectToString, reverse, rgbToHex, round10, round10N, runOn, s$, sizeFromLiteral, sizeToLiteral, sizeToString, sleep, startsWith1, strToColor, stringCompare, stringCompare1, stringCompare2, stringCompare3, stringCompareOrdinal, stringCompareTo, stringConcat, stringContains, stringCopyToCharArray, stringCreateFromChar, stringCreateFromCharArray, stringCreateFromCharArraySlice, stringEmpty, stringEndsWith, stringEquals, stringEquals1, stringEscapeRegExp, stringFormat, stringFormat1, stringFormat2, stringInsert, stringIsDigit, stringIsNullOrEmpty, stringIsNullOrWhiteSpace, stringJoin, stringJoin1, stringRemove, stringReplace, stringSplit, stringStartsWith, stringToBrush, stringToCharArray, stringToColor, stringToLocaleLower, stringToLocaleUpper, stringToString$1, stringToString1, timeSpanDays, timeSpanFromDays, timeSpanFromHours, timeSpanFromMilliseconds, timeSpanFromMinutes, timeSpanFromSeconds, timeSpanFromTicks, timeSpanHours, timeSpanInit1, timeSpanInit2, timeSpanInit3, timeSpanMilliseconds, timeSpanMinutes, timeSpanNegate, timeSpanSeconds, timeSpanTicks, timeSpanTotalDays, timeSpanTotalHours, timeSpanTotalMilliseconds, timeSpanTotalMinutes, timeSpanTotalSeconds, toBoolean, toBrushCollection, toColorCollection, toDecimal, toDouble, toEn, toEnum, toLocalTime, toLongDateString, toLongTimeString, toNullable, toOADate, toPoint, toRect, toSize, toSpinal, toString1, toUniversalTime, trim, trimEnd, trimStart, truncate, tryParseBool, tryParseInt16_1, tryParseInt16_2, tryParseInt32_1, tryParseInt32_2, tryParseInt64_1, tryParseInt64_2, tryParseInt8_1, tryParseInt8_2, tryParseIntCore, tryParseNumber, tryParseNumber1, tryParseUInt16_1, tryParseUInt16_2, tryParseUInt32_1, tryParseUInt32_2, tryParseUInt64_1, tryParseUInt64_2, tryParseUInt8_1, tryParseUInt8_2, typeCast, typeCastObjTo$t, typeGetValue, u32BitwiseAnd, u32BitwiseOr, u32BitwiseXor, u32LS, uint8ArraytoB64, unboxArray, unicode_hack, unwrapNullable, v$, wellKnownColors, wrapNullable };
|