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.
Files changed (74) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1063 -11
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
  4. package/esm2015/lib/FontDefaults.js +7 -7
  5. package/esm2015/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
  6. package/esm2015/lib/WebExpansionPanelComponentEventArgsDescription.js +34 -0
  7. package/esm2015/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
  8. package/esm2015/lib/WebExpansionPanelDescription.js +82 -0
  9. package/esm2015/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
  10. package/esm2015/lib/WebExpansionPanelDescriptionMetadata_combined.js +77 -0
  11. package/esm2015/lib/WebExpansionPanelDescriptionModule.js +20 -0
  12. package/esm2015/lib/WebMaskInputDescription.js +71 -0
  13. package/esm2015/lib/WebMaskInputDescriptionMetadata.js +47 -0
  14. package/esm2015/lib/WebMaskInputDescriptionModule.js +22 -0
  15. package/esm2015/lib/WebTreeDescription.js +106 -0
  16. package/esm2015/lib/WebTreeDescriptionMetadata.js +54 -0
  17. package/esm2015/lib/WebTreeDescriptionModule.js +26 -0
  18. package/esm2015/lib/WebTreeItemComponentEventArgsDescription.js +34 -0
  19. package/esm2015/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +40 -0
  20. package/esm2015/lib/WebTreeItemDescription.js +106 -0
  21. package/esm2015/lib/WebTreeItemDescriptionMetadata.js +48 -0
  22. package/esm2015/lib/WebTreeItemDescriptionModule.js +20 -0
  23. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +34 -0
  24. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +38 -0
  25. package/esm2015/lib/igx-tooltip-container-component.js +3 -3
  26. package/esm2015/public_api.js +18 -0
  27. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
  28. package/esm5/lib/FontDefaults.js +7 -7
  29. package/esm5/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
  30. package/esm5/lib/WebExpansionPanelComponentEventArgsDescription.js +44 -0
  31. package/esm5/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
  32. package/esm5/lib/WebExpansionPanelDescription.js +116 -0
  33. package/esm5/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
  34. package/esm5/lib/WebExpansionPanelDescriptionMetadata_combined.js +84 -0
  35. package/esm5/lib/WebExpansionPanelDescriptionModule.js +24 -0
  36. package/esm5/lib/WebMaskInputDescription.js +97 -0
  37. package/esm5/lib/WebMaskInputDescriptionMetadata.js +51 -0
  38. package/esm5/lib/WebMaskInputDescriptionModule.js +26 -0
  39. package/esm5/lib/WebTreeDescription.js +152 -0
  40. package/esm5/lib/WebTreeDescriptionMetadata.js +58 -0
  41. package/esm5/lib/WebTreeDescriptionModule.js +30 -0
  42. package/esm5/lib/WebTreeItemComponentEventArgsDescription.js +44 -0
  43. package/esm5/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +44 -0
  44. package/esm5/lib/WebTreeItemDescription.js +152 -0
  45. package/esm5/lib/WebTreeItemDescriptionMetadata.js +52 -0
  46. package/esm5/lib/WebTreeItemDescriptionModule.js +24 -0
  47. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +44 -0
  48. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +42 -0
  49. package/esm5/lib/igx-tooltip-container-component.js +2 -2
  50. package/esm5/public_api.js +18 -0
  51. package/fesm2015/igniteui-angular-core.js +857 -13
  52. package/fesm5/igniteui-angular-core.js +1046 -12
  53. package/lib/WebDropdownGroupDescription.d.ts +2 -2
  54. package/lib/WebExpansionPanelComponentEventArgsDescription.d.ts +15 -0
  55. package/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.d.ts +1 -0
  56. package/lib/WebExpansionPanelDescription.d.ts +32 -0
  57. package/lib/WebExpansionPanelDescriptionMetadata.d.ts +1 -0
  58. package/lib/WebExpansionPanelDescriptionMetadata_combined.d.ts +23 -0
  59. package/lib/WebExpansionPanelDescriptionModule.d.ts +9 -0
  60. package/lib/WebMaskInputDescription.d.ts +28 -0
  61. package/lib/WebMaskInputDescriptionMetadata.d.ts +13 -0
  62. package/lib/WebMaskInputDescriptionModule.d.ts +9 -0
  63. package/lib/WebTreeDescription.d.ts +41 -0
  64. package/lib/WebTreeDescriptionMetadata.d.ts +13 -0
  65. package/lib/WebTreeDescriptionModule.d.ts +9 -0
  66. package/lib/WebTreeItemComponentEventArgsDescription.d.ts +15 -0
  67. package/lib/WebTreeItemComponentEventArgsDescriptionMetadata.d.ts +13 -0
  68. package/lib/WebTreeItemDescription.d.ts +41 -0
  69. package/lib/WebTreeItemDescriptionMetadata.d.ts +13 -0
  70. package/lib/WebTreeItemDescriptionModule.d.ts +9 -0
  71. package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +15 -0
  72. package/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.d.ts +13 -0
  73. package/package.json +1 -1
  74. package/public_api.d.ts +18 -0
@@ -35520,13 +35520,13 @@ var FontDefaults = /** @class */ /*@__PURE__*/ (function (_super) {
35520
35520
  };
35521
35521
  FontDefaults.$t = markType(FontDefaults, 'FontDefaults');
35522
35522
  FontDefaults.legendLabelsBrush = BrushUtil.g(255, 37, 37, 37);
35523
- FontDefaults.legendLabelsFontSizeConst = 14;
35524
- FontDefaults.legendLabelsFontSize = DeviceUtils.f(14);
35523
+ FontDefaults.legendLabelsFontSizeConst = 13;
35524
+ FontDefaults.legendLabelsFontSize = DeviceUtils.f(13);
35525
35525
  FontDefaults.legendLabelsFontConst = "Verdana";
35526
35526
  FontDefaults.legendLabelsFontFamily = FontDefaults.aq("Verdana");
35527
35527
  FontDefaults.dataLegendFontBrush = BrushUtil.g(255, 37, 37, 37);
35528
- FontDefaults.dataLegendFontSizeConst = 14;
35529
- FontDefaults.dataLegendFontSize = DeviceUtils.f(14);
35528
+ FontDefaults.dataLegendFontSizeConst = 13;
35529
+ FontDefaults.dataLegendFontSize = DeviceUtils.f(13);
35530
35530
  FontDefaults.dataLegendFontFamilyConst = "Verdana";
35531
35531
  FontDefaults.dataLegendFontFamily = FontDefaults.aq("Verdana");
35532
35532
  FontDefaults.dataLegendFontWeight = "400";
@@ -35535,8 +35535,8 @@ var FontDefaults = /** @class */ /*@__PURE__*/ (function (_super) {
35535
35535
  FontDefaults.dataLegendFontVariant = "Normal";
35536
35536
  FontDefaults.dataLegendHeaderFontWeight = "600";
35537
35537
  FontDefaults.chartAxisLabelBrush = BrushUtil.g(255, 78, 78, 78);
35538
- FontDefaults.chartFontSizeConst = 14;
35539
- FontDefaults.chartFontSize = DeviceUtils.f(14);
35538
+ FontDefaults.chartFontSizeConst = 13;
35539
+ FontDefaults.chartFontSize = DeviceUtils.f(13);
35540
35540
  FontDefaults.chartFontNameConst = "Verdana";
35541
35541
  FontDefaults.chartFontFamily = FontDefaults.aq("Verdana");
35542
35542
  FontDefaults.chartFontWeight = "400";
@@ -35552,7 +35552,7 @@ var FontDefaults = /** @class */ /*@__PURE__*/ (function (_super) {
35552
35552
  FontDefaults.chartSubtitleNameConst = "Verdana";
35553
35553
  FontDefaults.chartSubtitleFontWeight = "600";
35554
35554
  FontDefaults.tooltipLabelsBrush = BrushUtil.g(255, 78, 78, 78);
35555
- FontDefaults.tooltipLabelsFontSizeConst = 14;
35555
+ FontDefaults.tooltipLabelsFontSizeConst = 13;
35556
35556
  FontDefaults.tooltipLabelsFontSize = DeviceUtils.f(FontDefaults.tooltipLabelsFontSizeConst);
35557
35557
  FontDefaults.tooltipFontNameConst = "Verdana";
35558
35558
  FontDefaults.tooltipLabelsFontFamily = FontDefaults.aq("Verdana");
@@ -42866,7 +42866,7 @@ var IgxTooltipContainerComponent = /** @class */ /*@__PURE__*/ (function () {
42866
42866
  TypeRegistrar.registerCons("IgxTooltipContainerComponent", IgxTooltipContainerComponent);
42867
42867
  };
42868
42868
  IgxTooltipContainerComponent.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.14", ngImport: i0, type: IgxTooltipContainerComponent, deps: [{ token: ChangeDetectorRef }], target: ɵɵFactoryTarget.Component });
42869
- IgxTooltipContainerComponent.ɵcmp = ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.14", type: IgxTooltipContainerComponent, selector: "igx-tooltip-container", inputs: { template: "template", containerTemplate: "containerTemplate", context: "context" }, host: { classAttribute: "ig-tooltip-container igx-tooltip-container" }, viewQueries: [{ propertyName: "_tooltipContent", first: true, predicate: IgxTemplateContentComponent, descendants: true, static: true }], ngImport: i0, template: "\n <ng-template #defaultContainer>\n <div class='ig-tooltip-container-background' *ngIf=\"context !== null && context.item !== null\"\n [style.border-color]=\"context && context.isSubContent ? 'transparent' : '#666'\">\n <igx-template-content *ngIf=\"context !== null\" [template]=\"template\" [context]=\"context\"></igx-template-content>\n </div>\n </ng-template>\n <ng-container *ngTemplateOutlet=\"containerTemplate ? containerTemplate : defaultContainer; context: context\">\n </ng-container>\n ", 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: 14px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 14px \"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 });
42869
+ IgxTooltipContainerComponent.ɵcmp = ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.14", type: IgxTooltipContainerComponent, selector: "igx-tooltip-container", inputs: { template: "template", containerTemplate: "containerTemplate", context: "context" }, host: { classAttribute: "ig-tooltip-container igx-tooltip-container" }, viewQueries: [{ propertyName: "_tooltipContent", first: true, predicate: IgxTemplateContentComponent, descendants: true, static: true }], ngImport: i0, template: "\n <ng-template #defaultContainer>\n <div class='ig-tooltip-container-background' *ngIf=\"context !== null && context.item !== null\"\n [style.border-color]=\"context && context.isSubContent ? 'transparent' : '#666'\">\n <igx-template-content *ngIf=\"context !== null\" [template]=\"template\" [context]=\"context\"></igx-template-content>\n </div>\n </ng-template>\n <ng-container *ngTemplateOutlet=\"containerTemplate ? containerTemplate : defaultContainer; context: context\">\n </ng-container>\n ", 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 });
42870
42870
  return IgxTooltipContainerComponent;
42871
42871
  }());
42872
42872
  ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.14", ngImport: i0, type: IgxTooltipContainerComponent, decorators: [{
@@ -42876,7 +42876,7 @@ var IgxTooltipContainerComponent = /** @class */ /*@__PURE__*/ (function () {
42876
42876
  changeDetection: ChangeDetectionStrategy.OnPush,
42877
42877
  host: { class: "ig-tooltip-container igx-tooltip-container" },
42878
42878
  template: "\n <ng-template #defaultContainer>\n <div class='ig-tooltip-container-background' *ngIf=\"context !== null && context.item !== null\"\n [style.border-color]=\"context && context.isSubContent ? 'transparent' : '#666'\">\n <igx-template-content *ngIf=\"context !== null\" [template]=\"template\" [context]=\"context\"></igx-template-content>\n </div>\n </ng-template>\n <ng-container *ngTemplateOutlet=\"containerTemplate ? containerTemplate : defaultContainer; context: context\">\n </ng-container>\n ",
42879
- 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: 14px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 14px \"Titillium Web\", Verdana, Arial, sans-serif);\n pointer-events: none;\n white-space: nowrap;\n }\n"]
42879
+ 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"]
42880
42880
  }]
42881
42881
  }], ctorParameters: function () { return [{ type: ChangeDetectorRef }]; }, propDecorators: { _tooltipContent: [{
42882
42882
  type: ViewChild,
@@ -67833,8 +67833,9 @@ var DotNetCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__
67833
67833
  e = " StateHasChanged();";
67834
67834
  }
67835
67835
  else {
67836
+ e = " OnPropertyChanged(\"" + this.v(a, false) + "\");";
67836
67837
  }
67837
- if (c.isAsync) {
67838
+ if (c != null && c.isAsync) {
67838
67839
  d = this.v(a, false) + ".Fetch().ContinueWith((t) => {" + this.ao(a) + " = t.Result; " + e + " });";
67839
67840
  }
67840
67841
  this.g.k("private " + this.v(a, false) + " " + this.ao(a) + " = null;");
@@ -170461,7 +170462,7 @@ var WebDropdownGroupDescriptionMetadata = /** @class */ /*@__PURE__*/ (function
170461
170462
  };
170462
170463
  WebDropdownGroupDescriptionMetadata.c = function (a) {
170463
170464
  a.item("__qualifiedNameTS", "String:DropdownGroup");
170464
- a.item("Items", "ExportedType:WebDropdownItem");
170465
+ a.item("Items", "Array:WebDropdownItemDescription:DropdownItem");
170465
170466
  a.item("Size", "ExportedType:string:DropdownGroupSize");
170466
170467
  a.item("Size@names", "Small;Medium;Large");
170467
170468
  };
@@ -170626,6 +170627,273 @@ var WebDropdownDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super
170626
170627
  return WebDropdownDescriptionModule;
170627
170628
  }(Base));
170628
170629
 
170630
+ /*
170631
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170632
+ https://www.infragistics.com/legal/license/igultimate-la
170633
+ https://www.infragistics.com/legal/license/igultimate-eula
170634
+ 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.
170635
+ */
170636
+ /**
170637
+ * @hidden
170638
+ */
170639
+ var WebExpansionPanelDescription = /** @class */ /*@__PURE__*/ (function (_super) {
170640
+ __extends(WebExpansionPanelDescription, _super);
170641
+ function WebExpansionPanelDescription() {
170642
+ var _this = _super.call(this) || this;
170643
+ _this.g = false;
170644
+ _this.f = false;
170645
+ _this.l = null;
170646
+ _this.n = null;
170647
+ _this.m = null;
170648
+ _this.k = null;
170649
+ _this.j = null;
170650
+ return _this;
170651
+ }
170652
+ WebExpansionPanelDescription.prototype.get_type = function () {
170653
+ return "WebExpansionPanel";
170654
+ };
170655
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "type", {
170656
+ get: function () {
170657
+ return this.get_type();
170658
+ },
170659
+ enumerable: false,
170660
+ configurable: true
170661
+ });
170662
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "open", {
170663
+ get: function () {
170664
+ return this.g;
170665
+ },
170666
+ set: function (a) {
170667
+ this.g = a;
170668
+ this.e("Open");
170669
+ },
170670
+ enumerable: false,
170671
+ configurable: true
170672
+ });
170673
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "disabled", {
170674
+ get: function () {
170675
+ return this.f;
170676
+ },
170677
+ set: function (a) {
170678
+ this.f = a;
170679
+ this.e("Disabled");
170680
+ },
170681
+ enumerable: false,
170682
+ configurable: true
170683
+ });
170684
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "indicatorPosition", {
170685
+ get: function () {
170686
+ return this.l;
170687
+ },
170688
+ set: function (a) {
170689
+ this.l = a;
170690
+ this.e("IndicatorPosition");
170691
+ },
170692
+ enumerable: false,
170693
+ configurable: true
170694
+ });
170695
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "openingRef", {
170696
+ get: function () {
170697
+ return this.n;
170698
+ },
170699
+ set: function (a) {
170700
+ this.n = a;
170701
+ this.e("OpeningRef");
170702
+ },
170703
+ enumerable: false,
170704
+ configurable: true
170705
+ });
170706
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "openedRef", {
170707
+ get: function () {
170708
+ return this.m;
170709
+ },
170710
+ set: function (a) {
170711
+ this.m = a;
170712
+ this.e("OpenedRef");
170713
+ },
170714
+ enumerable: false,
170715
+ configurable: true
170716
+ });
170717
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "closingRef", {
170718
+ get: function () {
170719
+ return this.k;
170720
+ },
170721
+ set: function (a) {
170722
+ this.k = a;
170723
+ this.e("ClosingRef");
170724
+ },
170725
+ enumerable: false,
170726
+ configurable: true
170727
+ });
170728
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "closedRef", {
170729
+ get: function () {
170730
+ return this.j;
170731
+ },
170732
+ set: function (a) {
170733
+ this.j = a;
170734
+ this.e("ClosedRef");
170735
+ },
170736
+ enumerable: false,
170737
+ configurable: true
170738
+ });
170739
+ WebExpansionPanelDescription.$t = markType(WebExpansionPanelDescription, 'WebExpansionPanelDescription', Description.$);
170740
+ return WebExpansionPanelDescription;
170741
+ }(Description));
170742
+
170743
+ /*
170744
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170745
+ https://www.infragistics.com/legal/license/igultimate-la
170746
+ https://www.infragistics.com/legal/license/igultimate-eula
170747
+ 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.
170748
+ */
170749
+ /**
170750
+ * @hidden
170751
+ */
170752
+ var WebExpansionPanelComponentEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
170753
+ __extends(WebExpansionPanelComponentEventArgsDescription, _super);
170754
+ function WebExpansionPanelComponentEventArgsDescription() {
170755
+ var _this = _super.call(this) || this;
170756
+ _this.f = null;
170757
+ return _this;
170758
+ }
170759
+ WebExpansionPanelComponentEventArgsDescription.prototype.get_type = function () {
170760
+ return "WebExpansionPanelComponentEventArgs";
170761
+ };
170762
+ Object.defineProperty(WebExpansionPanelComponentEventArgsDescription.prototype, "type", {
170763
+ get: function () {
170764
+ return this.get_type();
170765
+ },
170766
+ enumerable: false,
170767
+ configurable: true
170768
+ });
170769
+ Object.defineProperty(WebExpansionPanelComponentEventArgsDescription.prototype, "detail", {
170770
+ get: function () {
170771
+ return this.f;
170772
+ },
170773
+ set: function (a) {
170774
+ this.f = a;
170775
+ this.e("Detail");
170776
+ },
170777
+ enumerable: false,
170778
+ configurable: true
170779
+ });
170780
+ WebExpansionPanelComponentEventArgsDescription.$t = markType(WebExpansionPanelComponentEventArgsDescription, 'WebExpansionPanelComponentEventArgsDescription', Description.$);
170781
+ return WebExpansionPanelComponentEventArgsDescription;
170782
+ }(Description));
170783
+
170784
+ /*
170785
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170786
+ https://www.infragistics.com/legal/license/igultimate-la
170787
+ https://www.infragistics.com/legal/license/igultimate-eula
170788
+ 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.
170789
+ */
170790
+ /**
170791
+ * @hidden
170792
+ */
170793
+ var WebExpansionPanelDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
170794
+ __extends(WebExpansionPanelDescriptionMetadata, _super);
170795
+ function WebExpansionPanelDescriptionMetadata() {
170796
+ return _super !== null && _super.apply(this, arguments) || this;
170797
+ }
170798
+ WebExpansionPanelDescriptionMetadata.b = function (a) {
170799
+ if (WebExpansionPanelDescriptionMetadata.a == null) {
170800
+ WebExpansionPanelDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
170801
+ WebExpansionPanelDescriptionMetadata.c(WebExpansionPanelDescriptionMetadata.a);
170802
+ }
170803
+ if (a.g(WebExpansionPanelDescriptionMetadata.a)) {
170804
+ return;
170805
+ }
170806
+ a.s(WebExpansionPanelDescriptionMetadata.a);
170807
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.d(a);
170808
+ };
170809
+ WebExpansionPanelDescriptionMetadata.c = function (a) {
170810
+ a.item("__qualifiedNameTS", "String:ExpansionPanel");
170811
+ a.item("Open", "Boolean");
170812
+ a.item("Disabled", "Boolean");
170813
+ a.item("IndicatorPosition", "ExportedType:string:ExpansionPanelIndicatorPosition");
170814
+ a.item("IndicatorPosition@names", "Start;End;None");
170815
+ a.item("OpeningRef", "EventRef::opening");
170816
+ a.item("OpenedRef", "EventRef::opened");
170817
+ a.item("ClosingRef", "EventRef::closing");
170818
+ a.item("ClosedRef", "EventRef::closed");
170819
+ };
170820
+ WebExpansionPanelDescriptionMetadata.d = function (a) {
170821
+ WebExpansionPanelDescriptionMetadata.b(a);
170822
+ a.u("WebExpansionPanel", function () { return new WebExpansionPanelDescription(); });
170823
+ a.t("WebExpansionPanel", WebExpansionPanelDescriptionMetadata.a);
170824
+ };
170825
+ WebExpansionPanelDescriptionMetadata.$t = markType(WebExpansionPanelDescriptionMetadata, 'WebExpansionPanelDescriptionMetadata');
170826
+ WebExpansionPanelDescriptionMetadata.a = null;
170827
+ return WebExpansionPanelDescriptionMetadata;
170828
+ }(Base));
170829
+ /**
170830
+ * @hidden
170831
+ */
170832
+ var WebExpansionPanelComponentEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
170833
+ __extends(WebExpansionPanelComponentEventArgsDescriptionMetadata, _super);
170834
+ function WebExpansionPanelComponentEventArgsDescriptionMetadata() {
170835
+ return _super !== null && _super.apply(this, arguments) || this;
170836
+ }
170837
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.b = function (a) {
170838
+ if (WebExpansionPanelComponentEventArgsDescriptionMetadata.a == null) {
170839
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
170840
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.c(WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
170841
+ }
170842
+ if (a.g(WebExpansionPanelComponentEventArgsDescriptionMetadata.a)) {
170843
+ return;
170844
+ }
170845
+ a.s(WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
170846
+ WebExpansionPanelDescriptionMetadata.d(a);
170847
+ };
170848
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.c = function (a) {
170849
+ a.item("__qualifiedNameTS", "String:ExpansionPanelComponentEventArgs");
170850
+ a.item("Detail", "ExportedType:WebExpansionPanel");
170851
+ };
170852
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.d = function (a) {
170853
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.b(a);
170854
+ a.u("WebExpansionPanelComponentEventArgs", function () { return new WebExpansionPanelComponentEventArgsDescription(); });
170855
+ a.t("WebExpansionPanelComponentEventArgs", WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
170856
+ };
170857
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.$t = markType(WebExpansionPanelComponentEventArgsDescriptionMetadata, 'WebExpansionPanelComponentEventArgsDescriptionMetadata');
170858
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.a = null;
170859
+ return WebExpansionPanelComponentEventArgsDescriptionMetadata;
170860
+ }(Base));
170861
+
170862
+ /*
170863
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170864
+ https://www.infragistics.com/legal/license/igultimate-la
170865
+ https://www.infragistics.com/legal/license/igultimate-eula
170866
+ 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.
170867
+ */
170868
+
170869
+ /*
170870
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170871
+ https://www.infragistics.com/legal/license/igultimate-la
170872
+ https://www.infragistics.com/legal/license/igultimate-eula
170873
+ 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.
170874
+ */
170875
+
170876
+ /*
170877
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170878
+ https://www.infragistics.com/legal/license/igultimate-la
170879
+ https://www.infragistics.com/legal/license/igultimate-eula
170880
+ 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.
170881
+ */
170882
+ /**
170883
+ * @hidden
170884
+ */
170885
+ var WebExpansionPanelDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
170886
+ __extends(WebExpansionPanelDescriptionModule, _super);
170887
+ function WebExpansionPanelDescriptionModule() {
170888
+ return _super !== null && _super.apply(this, arguments) || this;
170889
+ }
170890
+ WebExpansionPanelDescriptionModule.register = function (a) {
170891
+ WebExpansionPanelDescriptionMetadata.d(a);
170892
+ };
170893
+ WebExpansionPanelDescriptionModule.$t = markType(WebExpansionPanelDescriptionModule, 'WebExpansionPanelDescriptionModule');
170894
+ return WebExpansionPanelDescriptionModule;
170895
+ }(Base));
170896
+
170629
170897
  /*
170630
170898
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170631
170899
  https://www.infragistics.com/legal/license/igultimate-la
@@ -172438,6 +172706,168 @@ var WebListDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
172438
172706
  return WebListDescriptionModule;
172439
172707
  }(Base));
172440
172708
 
172709
+ /*
172710
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
172711
+ https://www.infragistics.com/legal/license/igultimate-la
172712
+ https://www.infragistics.com/legal/license/igultimate-eula
172713
+ 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.
172714
+ */
172715
+ /**
172716
+ * @hidden
172717
+ */
172718
+ var WebMaskInputDescription = /** @class */ /*@__PURE__*/ (function (_super) {
172719
+ __extends(WebMaskInputDescription, _super);
172720
+ function WebMaskInputDescription() {
172721
+ var _this = _super.call(this) || this;
172722
+ _this.ae = null;
172723
+ _this.ac = false;
172724
+ _this.ai = null;
172725
+ _this.ah = null;
172726
+ _this.af = null;
172727
+ _this.ag = null;
172728
+ return _this;
172729
+ }
172730
+ WebMaskInputDescription.prototype.get_type = function () {
172731
+ return "WebMaskInput";
172732
+ };
172733
+ Object.defineProperty(WebMaskInputDescription.prototype, "dir", {
172734
+ get: function () {
172735
+ return this.ae;
172736
+ },
172737
+ set: function (a) {
172738
+ this.ae = a;
172739
+ this.e("Dir");
172740
+ },
172741
+ enumerable: false,
172742
+ configurable: true
172743
+ });
172744
+ Object.defineProperty(WebMaskInputDescription.prototype, "invalid", {
172745
+ get: function () {
172746
+ return this.ac;
172747
+ },
172748
+ set: function (a) {
172749
+ this.ac = a;
172750
+ this.e("Invalid");
172751
+ },
172752
+ enumerable: false,
172753
+ configurable: true
172754
+ });
172755
+ Object.defineProperty(WebMaskInputDescription.prototype, "valueMode", {
172756
+ get: function () {
172757
+ return this.ai;
172758
+ },
172759
+ set: function (a) {
172760
+ this.ai = a;
172761
+ this.e("ValueMode");
172762
+ },
172763
+ enumerable: false,
172764
+ configurable: true
172765
+ });
172766
+ Object.defineProperty(WebMaskInputDescription.prototype, "value", {
172767
+ get: function () {
172768
+ return this.ah;
172769
+ },
172770
+ set: function (a) {
172771
+ this.ah = a;
172772
+ this.e("Value");
172773
+ },
172774
+ enumerable: false,
172775
+ configurable: true
172776
+ });
172777
+ Object.defineProperty(WebMaskInputDescription.prototype, "mask", {
172778
+ get: function () {
172779
+ return this.af;
172780
+ },
172781
+ set: function (a) {
172782
+ this.af = a;
172783
+ this.e("Mask");
172784
+ },
172785
+ enumerable: false,
172786
+ configurable: true
172787
+ });
172788
+ Object.defineProperty(WebMaskInputDescription.prototype, "prompt", {
172789
+ get: function () {
172790
+ return this.ag;
172791
+ },
172792
+ set: function (a) {
172793
+ this.ag = a;
172794
+ this.e("Prompt");
172795
+ },
172796
+ enumerable: false,
172797
+ configurable: true
172798
+ });
172799
+ WebMaskInputDescription.$t = markType(WebMaskInputDescription, 'WebMaskInputDescription', WebInputBaseDescription.$);
172800
+ return WebMaskInputDescription;
172801
+ }(WebInputBaseDescription));
172802
+
172803
+ /*
172804
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
172805
+ https://www.infragistics.com/legal/license/igultimate-la
172806
+ https://www.infragistics.com/legal/license/igultimate-eula
172807
+ 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.
172808
+ */
172809
+ /**
172810
+ * @hidden
172811
+ */
172812
+ var WebMaskInputDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
172813
+ __extends(WebMaskInputDescriptionMetadata, _super);
172814
+ function WebMaskInputDescriptionMetadata() {
172815
+ return _super !== null && _super.apply(this, arguments) || this;
172816
+ }
172817
+ WebMaskInputDescriptionMetadata.b = function (a) {
172818
+ if (WebMaskInputDescriptionMetadata.a == null) {
172819
+ WebMaskInputDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
172820
+ WebMaskInputDescriptionMetadata.c(WebMaskInputDescriptionMetadata.a);
172821
+ }
172822
+ if (a.g(WebMaskInputDescriptionMetadata.a)) {
172823
+ return;
172824
+ }
172825
+ a.s(WebMaskInputDescriptionMetadata.a);
172826
+ };
172827
+ WebMaskInputDescriptionMetadata.c = function (a) {
172828
+ WebInputBaseDescriptionMetadata.c(a);
172829
+ a.item("__qualifiedNameTS", "String:MaskInput");
172830
+ a.item("Dir", "ExportedType:string:MaskInputDir");
172831
+ a.item("Dir@names", "Ltr;Rtl;Auto");
172832
+ a.item("Invalid", "Boolean");
172833
+ a.item("ValueMode", "ExportedType:string:MaskInputValueMode");
172834
+ a.item("ValueMode@names", "Raw;WithFormatting");
172835
+ a.item("Value", "String");
172836
+ a.item("Mask", "String");
172837
+ a.item("Prompt", "String");
172838
+ };
172839
+ WebMaskInputDescriptionMetadata.d = function (a) {
172840
+ WebMaskInputDescriptionMetadata.b(a);
172841
+ a.u("WebMaskInput", function () { return new WebMaskInputDescription(); });
172842
+ a.t("WebMaskInput", WebMaskInputDescriptionMetadata.a);
172843
+ };
172844
+ WebMaskInputDescriptionMetadata.$t = markType(WebMaskInputDescriptionMetadata, 'WebMaskInputDescriptionMetadata');
172845
+ WebMaskInputDescriptionMetadata.a = null;
172846
+ return WebMaskInputDescriptionMetadata;
172847
+ }(Base));
172848
+
172849
+ /*
172850
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
172851
+ https://www.infragistics.com/legal/license/igultimate-la
172852
+ https://www.infragistics.com/legal/license/igultimate-eula
172853
+ 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.
172854
+ */
172855
+ /**
172856
+ * @hidden
172857
+ */
172858
+ var WebMaskInputDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
172859
+ __extends(WebMaskInputDescriptionModule, _super);
172860
+ function WebMaskInputDescriptionModule() {
172861
+ return _super !== null && _super.apply(this, arguments) || this;
172862
+ }
172863
+ WebMaskInputDescriptionModule.register = function (a) {
172864
+ WebInputBaseDescriptionModule.register(a);
172865
+ WebMaskInputDescriptionMetadata.d(a);
172866
+ };
172867
+ WebMaskInputDescriptionModule.$t = markType(WebMaskInputDescriptionModule, 'WebMaskInputDescriptionModule');
172868
+ return WebMaskInputDescriptionModule;
172869
+ }(Base));
172870
+
172441
172871
  /*
172442
172872
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
172443
172873
  https://www.infragistics.com/legal/license/igultimate-la
@@ -176045,6 +176475,610 @@ var WebToastDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
176045
176475
  return WebToastDescriptionModule;
176046
176476
  }(Base));
176047
176477
 
176478
+ /*
176479
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176480
+ https://www.infragistics.com/legal/license/igultimate-la
176481
+ https://www.infragistics.com/legal/license/igultimate-eula
176482
+ 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.
176483
+ */
176484
+ /**
176485
+ * @hidden
176486
+ */
176487
+ var WebTreeDescription = /** @class */ /*@__PURE__*/ (function (_super) {
176488
+ __extends(WebTreeDescription, _super);
176489
+ function WebTreeDescription() {
176490
+ var _this = _super.call(this) || this;
176491
+ _this.f = false;
176492
+ _this.n = null;
176493
+ _this.i = null;
176494
+ _this.p = null;
176495
+ _this.o = null;
176496
+ _this.m = null;
176497
+ _this.l = null;
176498
+ _this.k = null;
176499
+ _this.j = null;
176500
+ _this.h = null;
176501
+ return _this;
176502
+ }
176503
+ WebTreeDescription.prototype.get_type = function () {
176504
+ return "WebTree";
176505
+ };
176506
+ Object.defineProperty(WebTreeDescription.prototype, "type", {
176507
+ get: function () {
176508
+ return this.get_type();
176509
+ },
176510
+ enumerable: false,
176511
+ configurable: true
176512
+ });
176513
+ Object.defineProperty(WebTreeDescription.prototype, "singleBranchExpand", {
176514
+ get: function () {
176515
+ return this.f;
176516
+ },
176517
+ set: function (a) {
176518
+ this.f = a;
176519
+ this.e("SingleBranchExpand");
176520
+ },
176521
+ enumerable: false,
176522
+ configurable: true
176523
+ });
176524
+ Object.defineProperty(WebTreeDescription.prototype, "selection", {
176525
+ get: function () {
176526
+ return this.n;
176527
+ },
176528
+ set: function (a) {
176529
+ this.n = a;
176530
+ this.e("Selection");
176531
+ },
176532
+ enumerable: false,
176533
+ configurable: true
176534
+ });
176535
+ Object.defineProperty(WebTreeDescription.prototype, "dir", {
176536
+ get: function () {
176537
+ return this.i;
176538
+ },
176539
+ set: function (a) {
176540
+ this.i = a;
176541
+ this.e("Dir");
176542
+ },
176543
+ enumerable: false,
176544
+ configurable: true
176545
+ });
176546
+ Object.defineProperty(WebTreeDescription.prototype, "size", {
176547
+ get: function () {
176548
+ return this.p;
176549
+ },
176550
+ set: function (a) {
176551
+ this.p = a;
176552
+ this.e("Size");
176553
+ },
176554
+ enumerable: false,
176555
+ configurable: true
176556
+ });
176557
+ Object.defineProperty(WebTreeDescription.prototype, "selectionChangedRef", {
176558
+ get: function () {
176559
+ return this.o;
176560
+ },
176561
+ set: function (a) {
176562
+ this.o = a;
176563
+ this.e("SelectionChangedRef");
176564
+ },
176565
+ enumerable: false,
176566
+ configurable: true
176567
+ });
176568
+ Object.defineProperty(WebTreeDescription.prototype, "itemExpandingRef", {
176569
+ get: function () {
176570
+ return this.m;
176571
+ },
176572
+ set: function (a) {
176573
+ this.m = a;
176574
+ this.e("ItemExpandingRef");
176575
+ },
176576
+ enumerable: false,
176577
+ configurable: true
176578
+ });
176579
+ Object.defineProperty(WebTreeDescription.prototype, "itemExpandedRef", {
176580
+ get: function () {
176581
+ return this.l;
176582
+ },
176583
+ set: function (a) {
176584
+ this.l = a;
176585
+ this.e("ItemExpandedRef");
176586
+ },
176587
+ enumerable: false,
176588
+ configurable: true
176589
+ });
176590
+ Object.defineProperty(WebTreeDescription.prototype, "itemCollapsingRef", {
176591
+ get: function () {
176592
+ return this.k;
176593
+ },
176594
+ set: function (a) {
176595
+ this.k = a;
176596
+ this.e("ItemCollapsingRef");
176597
+ },
176598
+ enumerable: false,
176599
+ configurable: true
176600
+ });
176601
+ Object.defineProperty(WebTreeDescription.prototype, "itemCollapsedRef", {
176602
+ get: function () {
176603
+ return this.j;
176604
+ },
176605
+ set: function (a) {
176606
+ this.j = a;
176607
+ this.e("ItemCollapsedRef");
176608
+ },
176609
+ enumerable: false,
176610
+ configurable: true
176611
+ });
176612
+ Object.defineProperty(WebTreeDescription.prototype, "activeItemRef", {
176613
+ get: function () {
176614
+ return this.h;
176615
+ },
176616
+ set: function (a) {
176617
+ this.h = a;
176618
+ this.e("ActiveItemRef");
176619
+ },
176620
+ enumerable: false,
176621
+ configurable: true
176622
+ });
176623
+ WebTreeDescription.$t = markType(WebTreeDescription, 'WebTreeDescription', Description.$);
176624
+ return WebTreeDescription;
176625
+ }(Description));
176626
+
176627
+ /*
176628
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176629
+ https://www.infragistics.com/legal/license/igultimate-la
176630
+ https://www.infragistics.com/legal/license/igultimate-eula
176631
+ 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.
176632
+ */
176633
+ /**
176634
+ * @hidden
176635
+ */
176636
+ var WebTreeSelectionOptionsEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
176637
+ __extends(WebTreeSelectionOptionsEventArgsDescription, _super);
176638
+ function WebTreeSelectionOptionsEventArgsDescription() {
176639
+ var _this = _super.call(this) || this;
176640
+ _this.f = null;
176641
+ return _this;
176642
+ }
176643
+ WebTreeSelectionOptionsEventArgsDescription.prototype.get_type = function () {
176644
+ return "WebTreeSelectionOptionsEventArgs";
176645
+ };
176646
+ Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "type", {
176647
+ get: function () {
176648
+ return this.get_type();
176649
+ },
176650
+ enumerable: false,
176651
+ configurable: true
176652
+ });
176653
+ Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "newSelection", {
176654
+ get: function () {
176655
+ return this.f;
176656
+ },
176657
+ set: function (a) {
176658
+ this.f = a;
176659
+ this.e("NewSelection");
176660
+ },
176661
+ enumerable: false,
176662
+ configurable: true
176663
+ });
176664
+ WebTreeSelectionOptionsEventArgsDescription.$t = markType(WebTreeSelectionOptionsEventArgsDescription, 'WebTreeSelectionOptionsEventArgsDescription', Description.$);
176665
+ return WebTreeSelectionOptionsEventArgsDescription;
176666
+ }(Description));
176667
+
176668
+ /*
176669
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176670
+ https://www.infragistics.com/legal/license/igultimate-la
176671
+ https://www.infragistics.com/legal/license/igultimate-eula
176672
+ 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.
176673
+ */
176674
+ /**
176675
+ * @hidden
176676
+ */
176677
+ var WebTreeSelectionOptionsEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
176678
+ __extends(WebTreeSelectionOptionsEventArgsDescriptionMetadata, _super);
176679
+ function WebTreeSelectionOptionsEventArgsDescriptionMetadata() {
176680
+ return _super !== null && _super.apply(this, arguments) || this;
176681
+ }
176682
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.b = function (a) {
176683
+ if (WebTreeSelectionOptionsEventArgsDescriptionMetadata.a == null) {
176684
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
176685
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.c(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
176686
+ }
176687
+ if (a.g(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a)) {
176688
+ return;
176689
+ }
176690
+ a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
176691
+ };
176692
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.c = function (a) {
176693
+ a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
176694
+ a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
176695
+ };
176696
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.d = function (a) {
176697
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
176698
+ a.u("WebTreeSelectionOptionsEventArgs", function () { return new WebTreeSelectionOptionsEventArgsDescription(); });
176699
+ a.t("WebTreeSelectionOptionsEventArgs", WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
176700
+ };
176701
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.$t = markType(WebTreeSelectionOptionsEventArgsDescriptionMetadata, 'WebTreeSelectionOptionsEventArgsDescriptionMetadata');
176702
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.a = null;
176703
+ return WebTreeSelectionOptionsEventArgsDescriptionMetadata;
176704
+ }(Base));
176705
+
176706
+ /*
176707
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176708
+ https://www.infragistics.com/legal/license/igultimate-la
176709
+ https://www.infragistics.com/legal/license/igultimate-eula
176710
+ 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.
176711
+ */
176712
+ /**
176713
+ * @hidden
176714
+ */
176715
+ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
176716
+ __extends(WebTreeItemDescription, _super);
176717
+ function WebTreeItemDescription() {
176718
+ var _this = _super.call(this) || this;
176719
+ _this.f = null;
176720
+ _this.k = false;
176721
+ _this.t = 0;
176722
+ _this.v = null;
176723
+ _this.j = false;
176724
+ _this.h = false;
176725
+ _this.i = false;
176726
+ _this.m = false;
176727
+ _this.l = false;
176728
+ _this.w = null;
176729
+ return _this;
176730
+ }
176731
+ WebTreeItemDescription.prototype.get_type = function () {
176732
+ return "WebTreeItem";
176733
+ };
176734
+ Object.defineProperty(WebTreeItemDescription.prototype, "type", {
176735
+ get: function () {
176736
+ return this.get_type();
176737
+ },
176738
+ enumerable: false,
176739
+ configurable: true
176740
+ });
176741
+ Object.defineProperty(WebTreeItemDescription.prototype, "parent", {
176742
+ get: function () {
176743
+ return this.f;
176744
+ },
176745
+ set: function (a) {
176746
+ this.f = a;
176747
+ this.e("Parent");
176748
+ },
176749
+ enumerable: false,
176750
+ configurable: true
176751
+ });
176752
+ Object.defineProperty(WebTreeItemDescription.prototype, "init", {
176753
+ get: function () {
176754
+ return this.k;
176755
+ },
176756
+ set: function (a) {
176757
+ this.k = a;
176758
+ this.e("Init");
176759
+ },
176760
+ enumerable: false,
176761
+ configurable: true
176762
+ });
176763
+ Object.defineProperty(WebTreeItemDescription.prototype, "level", {
176764
+ get: function () {
176765
+ return this.t;
176766
+ },
176767
+ set: function (a) {
176768
+ this.t = a;
176769
+ this.e("Level");
176770
+ },
176771
+ enumerable: false,
176772
+ configurable: true
176773
+ });
176774
+ Object.defineProperty(WebTreeItemDescription.prototype, "label", {
176775
+ get: function () {
176776
+ return this.v;
176777
+ },
176778
+ set: function (a) {
176779
+ this.v = a;
176780
+ this.e("Label");
176781
+ },
176782
+ enumerable: false,
176783
+ configurable: true
176784
+ });
176785
+ Object.defineProperty(WebTreeItemDescription.prototype, "expanded", {
176786
+ get: function () {
176787
+ return this.j;
176788
+ },
176789
+ set: function (a) {
176790
+ this.j = a;
176791
+ this.e("Expanded");
176792
+ },
176793
+ enumerable: false,
176794
+ configurable: true
176795
+ });
176796
+ Object.defineProperty(WebTreeItemDescription.prototype, "active", {
176797
+ get: function () {
176798
+ return this.h;
176799
+ },
176800
+ set: function (a) {
176801
+ this.h = a;
176802
+ this.e("Active");
176803
+ },
176804
+ enumerable: false,
176805
+ configurable: true
176806
+ });
176807
+ Object.defineProperty(WebTreeItemDescription.prototype, "disabled", {
176808
+ get: function () {
176809
+ return this.i;
176810
+ },
176811
+ set: function (a) {
176812
+ this.i = a;
176813
+ this.e("Disabled");
176814
+ },
176815
+ enumerable: false,
176816
+ configurable: true
176817
+ });
176818
+ Object.defineProperty(WebTreeItemDescription.prototype, "selected", {
176819
+ get: function () {
176820
+ return this.m;
176821
+ },
176822
+ set: function (a) {
176823
+ this.m = a;
176824
+ this.e("Selected");
176825
+ },
176826
+ enumerable: false,
176827
+ configurable: true
176828
+ });
176829
+ Object.defineProperty(WebTreeItemDescription.prototype, "loading", {
176830
+ get: function () {
176831
+ return this.l;
176832
+ },
176833
+ set: function (a) {
176834
+ this.l = a;
176835
+ this.e("Loading");
176836
+ },
176837
+ enumerable: false,
176838
+ configurable: true
176839
+ });
176840
+ Object.defineProperty(WebTreeItemDescription.prototype, "valueRef", {
176841
+ get: function () {
176842
+ return this.w;
176843
+ },
176844
+ set: function (a) {
176845
+ this.w = a;
176846
+ this.e("ValueRef");
176847
+ },
176848
+ enumerable: false,
176849
+ configurable: true
176850
+ });
176851
+ WebTreeItemDescription.$t = markType(WebTreeItemDescription, 'WebTreeItemDescription', Description.$);
176852
+ return WebTreeItemDescription;
176853
+ }(Description));
176854
+
176855
+ /*
176856
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176857
+ https://www.infragistics.com/legal/license/igultimate-la
176858
+ https://www.infragistics.com/legal/license/igultimate-eula
176859
+ 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.
176860
+ */
176861
+ /**
176862
+ * @hidden
176863
+ */
176864
+ var WebTreeItemDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
176865
+ __extends(WebTreeItemDescriptionMetadata, _super);
176866
+ function WebTreeItemDescriptionMetadata() {
176867
+ return _super !== null && _super.apply(this, arguments) || this;
176868
+ }
176869
+ WebTreeItemDescriptionMetadata.b = function (a) {
176870
+ if (WebTreeItemDescriptionMetadata.a == null) {
176871
+ WebTreeItemDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
176872
+ WebTreeItemDescriptionMetadata.c(WebTreeItemDescriptionMetadata.a);
176873
+ }
176874
+ if (a.g(WebTreeItemDescriptionMetadata.a)) {
176875
+ return;
176876
+ }
176877
+ a.s(WebTreeItemDescriptionMetadata.a);
176878
+ WebTreeItemDescriptionMetadata.d(a);
176879
+ };
176880
+ WebTreeItemDescriptionMetadata.c = function (a) {
176881
+ a.item("__qualifiedNameTS", "String:TreeItem");
176882
+ a.item("Parent", "ExportedType:WebTreeItem");
176883
+ a.item("Init", "Boolean");
176884
+ a.item("Level", "Number:double");
176885
+ a.item("Label", "String");
176886
+ a.item("Expanded", "Boolean");
176887
+ a.item("Active", "Boolean");
176888
+ a.item("Disabled", "Boolean");
176889
+ a.item("Selected", "Boolean");
176890
+ a.item("Loading", "Boolean");
176891
+ a.item("ValueRef", "(w:Value,wf:Value)DataRef");
176892
+ };
176893
+ WebTreeItemDescriptionMetadata.d = function (a) {
176894
+ WebTreeItemDescriptionMetadata.b(a);
176895
+ a.u("WebTreeItem", function () { return new WebTreeItemDescription(); });
176896
+ a.t("WebTreeItem", WebTreeItemDescriptionMetadata.a);
176897
+ };
176898
+ WebTreeItemDescriptionMetadata.$t = markType(WebTreeItemDescriptionMetadata, 'WebTreeItemDescriptionMetadata');
176899
+ WebTreeItemDescriptionMetadata.a = null;
176900
+ return WebTreeItemDescriptionMetadata;
176901
+ }(Base));
176902
+
176903
+ /*
176904
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176905
+ https://www.infragistics.com/legal/license/igultimate-la
176906
+ https://www.infragistics.com/legal/license/igultimate-eula
176907
+ 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.
176908
+ */
176909
+ /**
176910
+ * @hidden
176911
+ */
176912
+ var WebTreeItemComponentEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
176913
+ __extends(WebTreeItemComponentEventArgsDescription, _super);
176914
+ function WebTreeItemComponentEventArgsDescription() {
176915
+ var _this = _super.call(this) || this;
176916
+ _this.f = null;
176917
+ return _this;
176918
+ }
176919
+ WebTreeItemComponentEventArgsDescription.prototype.get_type = function () {
176920
+ return "WebTreeItemComponentEventArgs";
176921
+ };
176922
+ Object.defineProperty(WebTreeItemComponentEventArgsDescription.prototype, "type", {
176923
+ get: function () {
176924
+ return this.get_type();
176925
+ },
176926
+ enumerable: false,
176927
+ configurable: true
176928
+ });
176929
+ Object.defineProperty(WebTreeItemComponentEventArgsDescription.prototype, "detail", {
176930
+ get: function () {
176931
+ return this.f;
176932
+ },
176933
+ set: function (a) {
176934
+ this.f = a;
176935
+ this.e("Detail");
176936
+ },
176937
+ enumerable: false,
176938
+ configurable: true
176939
+ });
176940
+ WebTreeItemComponentEventArgsDescription.$t = markType(WebTreeItemComponentEventArgsDescription, 'WebTreeItemComponentEventArgsDescription', Description.$);
176941
+ return WebTreeItemComponentEventArgsDescription;
176942
+ }(Description));
176943
+
176944
+ /*
176945
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176946
+ https://www.infragistics.com/legal/license/igultimate-la
176947
+ https://www.infragistics.com/legal/license/igultimate-eula
176948
+ 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.
176949
+ */
176950
+ /**
176951
+ * @hidden
176952
+ */
176953
+ var WebTreeItemComponentEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
176954
+ __extends(WebTreeItemComponentEventArgsDescriptionMetadata, _super);
176955
+ function WebTreeItemComponentEventArgsDescriptionMetadata() {
176956
+ return _super !== null && _super.apply(this, arguments) || this;
176957
+ }
176958
+ WebTreeItemComponentEventArgsDescriptionMetadata.b = function (a) {
176959
+ if (WebTreeItemComponentEventArgsDescriptionMetadata.a == null) {
176960
+ WebTreeItemComponentEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
176961
+ WebTreeItemComponentEventArgsDescriptionMetadata.c(WebTreeItemComponentEventArgsDescriptionMetadata.a);
176962
+ }
176963
+ if (a.g(WebTreeItemComponentEventArgsDescriptionMetadata.a)) {
176964
+ return;
176965
+ }
176966
+ a.s(WebTreeItemComponentEventArgsDescriptionMetadata.a);
176967
+ WebTreeItemDescriptionMetadata.d(a);
176968
+ };
176969
+ WebTreeItemComponentEventArgsDescriptionMetadata.c = function (a) {
176970
+ a.item("__qualifiedNameTS", "String:TreeItemComponentEventArgs");
176971
+ a.item("Detail", "ExportedType:WebTreeItem");
176972
+ };
176973
+ WebTreeItemComponentEventArgsDescriptionMetadata.d = function (a) {
176974
+ WebTreeItemComponentEventArgsDescriptionMetadata.b(a);
176975
+ a.u("WebTreeItemComponentEventArgs", function () { return new WebTreeItemComponentEventArgsDescription(); });
176976
+ a.t("WebTreeItemComponentEventArgs", WebTreeItemComponentEventArgsDescriptionMetadata.a);
176977
+ };
176978
+ WebTreeItemComponentEventArgsDescriptionMetadata.$t = markType(WebTreeItemComponentEventArgsDescriptionMetadata, 'WebTreeItemComponentEventArgsDescriptionMetadata');
176979
+ WebTreeItemComponentEventArgsDescriptionMetadata.a = null;
176980
+ return WebTreeItemComponentEventArgsDescriptionMetadata;
176981
+ }(Base));
176982
+
176983
+ /*
176984
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176985
+ https://www.infragistics.com/legal/license/igultimate-la
176986
+ https://www.infragistics.com/legal/license/igultimate-eula
176987
+ 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.
176988
+ */
176989
+ /**
176990
+ * @hidden
176991
+ */
176992
+ var WebTreeDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
176993
+ __extends(WebTreeDescriptionMetadata, _super);
176994
+ function WebTreeDescriptionMetadata() {
176995
+ return _super !== null && _super.apply(this, arguments) || this;
176996
+ }
176997
+ WebTreeDescriptionMetadata.b = function (a) {
176998
+ if (WebTreeDescriptionMetadata.a == null) {
176999
+ WebTreeDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
177000
+ WebTreeDescriptionMetadata.c(WebTreeDescriptionMetadata.a);
177001
+ }
177002
+ if (a.g(WebTreeDescriptionMetadata.a)) {
177003
+ return;
177004
+ }
177005
+ a.s(WebTreeDescriptionMetadata.a);
177006
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.d(a);
177007
+ WebTreeItemComponentEventArgsDescriptionMetadata.d(a);
177008
+ };
177009
+ WebTreeDescriptionMetadata.c = function (a) {
177010
+ a.item("__qualifiedNameTS", "String:Tree");
177011
+ a.item("SingleBranchExpand", "Boolean");
177012
+ a.item("Selection", "ExportedType:string:TreeSelection");
177013
+ a.item("Selection@names", "Multiple;None;Cascade");
177014
+ a.item("Dir", "ExportedType:string:TreeDir");
177015
+ a.item("Dir@names", "Ltr;Rtl;Auto");
177016
+ a.item("Size", "ExportedType:string:SizableComponentSize");
177017
+ a.item("Size@names", "Large;Small;Medium");
177018
+ a.item("SelectionChangedRef", "EventRef::selectionChanged");
177019
+ a.item("ItemExpandingRef", "EventRef::itemExpanding");
177020
+ a.item("ItemExpandedRef", "EventRef::itemExpanded");
177021
+ a.item("ItemCollapsingRef", "EventRef::itemCollapsing");
177022
+ a.item("ItemCollapsedRef", "EventRef::itemCollapsed");
177023
+ a.item("ActiveItemRef", "EventRef::activeItem");
177024
+ };
177025
+ WebTreeDescriptionMetadata.d = function (a) {
177026
+ WebTreeDescriptionMetadata.b(a);
177027
+ a.u("WebTree", function () { return new WebTreeDescription(); });
177028
+ a.t("WebTree", WebTreeDescriptionMetadata.a);
177029
+ };
177030
+ WebTreeDescriptionMetadata.$t = markType(WebTreeDescriptionMetadata, 'WebTreeDescriptionMetadata');
177031
+ WebTreeDescriptionMetadata.a = null;
177032
+ return WebTreeDescriptionMetadata;
177033
+ }(Base));
177034
+
177035
+ /*
177036
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
177037
+ https://www.infragistics.com/legal/license/igultimate-la
177038
+ https://www.infragistics.com/legal/license/igultimate-eula
177039
+ 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.
177040
+ */
177041
+ /**
177042
+ * @hidden
177043
+ */
177044
+ var WebTreeItemDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
177045
+ __extends(WebTreeItemDescriptionModule, _super);
177046
+ function WebTreeItemDescriptionModule() {
177047
+ return _super !== null && _super.apply(this, arguments) || this;
177048
+ }
177049
+ WebTreeItemDescriptionModule.register = function (a) {
177050
+ WebTreeItemDescriptionMetadata.d(a);
177051
+ };
177052
+ WebTreeItemDescriptionModule.$t = markType(WebTreeItemDescriptionModule, 'WebTreeItemDescriptionModule');
177053
+ return WebTreeItemDescriptionModule;
177054
+ }(Base));
177055
+
177056
+ /*
177057
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
177058
+ https://www.infragistics.com/legal/license/igultimate-la
177059
+ https://www.infragistics.com/legal/license/igultimate-eula
177060
+ 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.
177061
+ */
177062
+ /**
177063
+ * @hidden
177064
+ */
177065
+ var WebTreeDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
177066
+ __extends(WebTreeDescriptionModule, _super);
177067
+ function WebTreeDescriptionModule() {
177068
+ return _super !== null && _super.apply(this, arguments) || this;
177069
+ }
177070
+ WebTreeDescriptionModule.register = function (a) {
177071
+ WebTreeItemDescriptionModule.register(a);
177072
+ WebTreeItemDescriptionModule.register(a);
177073
+ WebTreeItemDescriptionModule.register(a);
177074
+ WebTreeItemDescriptionModule.register(a);
177075
+ WebTreeItemDescriptionModule.register(a);
177076
+ WebTreeDescriptionMetadata.d(a);
177077
+ };
177078
+ WebTreeDescriptionModule.$t = markType(WebTreeDescriptionModule, 'WebTreeDescriptionModule');
177079
+ return WebTreeDescriptionModule;
177080
+ }(Base));
177081
+
176048
177082
  /*
176049
177083
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176050
177084
  https://www.infragistics.com/legal/license/igultimate-la
@@ -216833,4 +217867,4 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
216833
217867
  * Generated bundle index. Do not edit.
216834
217868
  */
216835
217869
 
216836
- 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 };
217870
+ 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 };