igniteui-angular-core 20.0.2-beta.2 → 20.0.2-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 (48) hide show
  1. package/bundles/igniteui-angular-core.umd.js +448 -353
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/{AzureMapsMapImageryDescription.js → AzureMapsImageryDescription.js} +5 -5
  4. package/esm2015/lib/AzureMapsImageryDescriptionMetadata.js +45 -0
  5. package/esm2015/lib/{AzureMapsMapImageryDescriptionModule.js → AzureMapsImageryDescriptionModule.js} +6 -6
  6. package/esm2015/lib/BrushCollection.js +2 -2
  7. package/esm2015/lib/ComponentRenderer_combined.js +2 -2
  8. package/esm2015/lib/GridConditionalStylePropertyDescription.js +109 -53
  9. package/esm2015/lib/GridConditionalStylePropertyDescriptionMetadata.js +10 -1
  10. package/esm2015/lib/LegendBaseDescription.js +3 -3
  11. package/esm2015/lib/LegendBaseDescriptionMetadata.js +3 -3
  12. package/esm2015/lib/{LegendSizeChangedEventArgsDescription.js → LegendTextContentChangedEventArgsDescription.js} +5 -5
  13. package/esm2015/lib/LegendTextContentChangedEventArgsDescriptionMetadata.js +36 -0
  14. package/esm2015/lib/PlatformAPIHelper.js +16 -1
  15. package/esm2015/lib/XamMultiScaleImageView_combined.js +98 -110
  16. package/esm2015/public_api.js +5 -5
  17. package/esm5/lib/{AzureMapsMapImageryDescription.js → AzureMapsImageryDescription.js} +14 -14
  18. package/esm5/lib/AzureMapsImageryDescriptionMetadata.js +49 -0
  19. package/esm5/lib/{AzureMapsMapImageryDescriptionModule.js → AzureMapsImageryDescriptionModule.js} +9 -9
  20. package/esm5/lib/BrushCollection.js +2 -2
  21. package/esm5/lib/ComponentRenderer_combined.js +2 -2
  22. package/esm5/lib/GridConditionalStylePropertyDescription.js +135 -51
  23. package/esm5/lib/GridConditionalStylePropertyDescriptionMetadata.js +10 -1
  24. package/esm5/lib/LegendBaseDescription.js +2 -2
  25. package/esm5/lib/LegendBaseDescriptionMetadata.js +3 -3
  26. package/esm5/lib/{LegendSizeChangedEventArgsDescription.js → LegendTextContentChangedEventArgsDescription.js} +9 -9
  27. package/esm5/lib/LegendTextContentChangedEventArgsDescriptionMetadata.js +40 -0
  28. package/esm5/lib/PlatformAPIHelper.js +16 -1
  29. package/esm5/lib/XamMultiScaleImageView_combined.js +97 -109
  30. package/esm5/public_api.js +5 -5
  31. package/fesm2015/igniteui-angular-core.js +377 -310
  32. package/fesm5/igniteui-angular-core.js +444 -349
  33. package/lib/{AzureMapsMapImageryDescription.d.ts → AzureMapsImageryDescription.d.ts} +1 -1
  34. package/lib/{AzureMapsMapImageryDescriptionMetadata.d.ts → AzureMapsImageryDescriptionMetadata.d.ts} +1 -1
  35. package/lib/{AzureMapsMapImageryDescriptionModule.d.ts → AzureMapsImageryDescriptionModule.d.ts} +1 -1
  36. package/lib/ComponentRenderer_combined.d.ts +2 -2
  37. package/lib/GridConditionalStylePropertyDescription.d.ts +40 -18
  38. package/lib/IChartLegend.d.ts +1 -0
  39. package/lib/LegendBaseDescription.d.ts +2 -2
  40. package/lib/{LegendSizeChangedEventArgsDescription.d.ts → LegendTextContentChangedEventArgsDescription.d.ts} +1 -1
  41. package/lib/{LegendSizeChangedEventArgsDescriptionMetadata.d.ts → LegendTextContentChangedEventArgsDescriptionMetadata.d.ts} +1 -1
  42. package/lib/XamMultiScaleImageView_combined.d.ts +36 -40
  43. package/package.json +1 -1
  44. package/public_api.d.ts +5 -5
  45. package/esm2015/lib/AzureMapsMapImageryDescriptionMetadata.js +0 -45
  46. package/esm2015/lib/LegendSizeChangedEventArgsDescriptionMetadata.js +0 -36
  47. package/esm5/lib/AzureMapsMapImageryDescriptionMetadata.js +0 -49
  48. package/esm5/lib/LegendSizeChangedEventArgsDescriptionMetadata.js +0 -40
@@ -15837,7 +15837,7 @@ var BrushCollection = /** @class */ /*@__PURE__*/ (function (_super) {
15837
15837
  }
15838
15838
  };
15839
15839
  BrushCollection.prototype.equals = function (a) {
15840
- if (a == null) {
15840
+ if (a == null || !(typeCast(BrushCollection.$, a) !== null)) {
15841
15841
  return false;
15842
15842
  }
15843
15843
  var b = a;
@@ -37235,6 +37235,9 @@ var PlatformAPIHelper = /** @class */ /*@__PURE__*/ (function (_super) {
37235
37235
  if (a == null) {
37236
37236
  return null;
37237
37237
  }
37238
+ if (getInstanceType(a) == Brush.$) {
37239
+ return a;
37240
+ }
37238
37241
  return Brush.create(a);
37239
37242
  };
37240
37243
  PlatformAPIHelper.k = function (a) {
@@ -37253,6 +37256,9 @@ var PlatformAPIHelper = /** @class */ /*@__PURE__*/ (function (_super) {
37253
37256
  if (a == null) {
37254
37257
  return null;
37255
37258
  }
37259
+ if (getInstanceType(a) == Point_$type) {
37260
+ return a;
37261
+ }
37256
37262
  var b = a;
37257
37263
  return { $type: Point_$type, x: b["x"], y: b["y"] };
37258
37264
  };
@@ -37260,6 +37266,9 @@ var PlatformAPIHelper = /** @class */ /*@__PURE__*/ (function (_super) {
37260
37266
  if (a == null) {
37261
37267
  return null;
37262
37268
  }
37269
+ if (getInstanceType(a) == Size.$) {
37270
+ return a;
37271
+ }
37263
37272
  var b = a;
37264
37273
  return new Size(1, b["width"], b["height"]);
37265
37274
  };
@@ -37267,6 +37276,9 @@ var PlatformAPIHelper = /** @class */ /*@__PURE__*/ (function (_super) {
37267
37276
  if (a == null) {
37268
37277
  return null;
37269
37278
  }
37279
+ if (getInstanceType(a) == Rect.$) {
37280
+ return a;
37281
+ }
37270
37282
  var b = a;
37271
37283
  return new Rect(0, b["left"], b["top"], b["width"], b["height"]);
37272
37284
  };
@@ -37274,6 +37286,9 @@ var PlatformAPIHelper = /** @class */ /*@__PURE__*/ (function (_super) {
37274
37286
  if (a == null) {
37275
37287
  return null;
37276
37288
  }
37289
+ if (getInstanceType(a) == DoubleCollection.$) {
37290
+ return a;
37291
+ }
37277
37292
  var b = a;
37278
37293
  var c = new DoubleCollection();
37279
37294
  for (var d = 0; d < b.length; d++) {
@@ -88251,7 +88266,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
88251
88266
  var g = f.k(ComponentRenderer.platform);
88252
88267
  this.adapter.setPropertyValue(c, g, f, d, e, null);
88253
88268
  };
88254
- ComponentRenderer.prototype.executeMethod1 = function (a, b, c) {
88269
+ ComponentRenderer.prototype.executeMethod = function (a, b, c) {
88255
88270
  var _this = this;
88256
88271
  var d = new JsonDictionaryParser();
88257
88272
  var e = d.parse(b);
@@ -88316,7 +88331,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
88316
88331
  });
88317
88332
  }
88318
88333
  };
88319
- ComponentRenderer.prototype.executeMethod = function (a, b, c) {
88334
+ ComponentRenderer.prototype.executeMethodWithBuilder = function (a, b, c) {
88320
88335
  var _this = this;
88321
88336
  var d = new JsonDictionaryParser();
88322
88337
  if (!this.ba.containsKey(a)) {
@@ -105085,9 +105100,9 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
105085
105100
  /**
105086
105101
  * @hidden
105087
105102
  */
105088
- var AzureMapsMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_super) {
105089
- __extends(AzureMapsMapImageryDescription, _super);
105090
- function AzureMapsMapImageryDescription() {
105103
+ var AzureMapsImageryDescription = /** @class */ /*@__PURE__*/ (function (_super) {
105104
+ __extends(AzureMapsImageryDescription, _super);
105105
+ function AzureMapsImageryDescription() {
105091
105106
  var _this = _super.call(this) || this;
105092
105107
  _this.ag = null;
105093
105108
  _this.ae = null;
@@ -105097,10 +105112,10 @@ var AzureMapsMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_sup
105097
105112
  _this.ac = new Date();
105098
105113
  return _this;
105099
105114
  }
105100
- AzureMapsMapImageryDescription.prototype.get_type = function () {
105101
- return "AzureMapsMapImagery";
105115
+ AzureMapsImageryDescription.prototype.get_type = function () {
105116
+ return "AzureMapsImagery";
105102
105117
  };
105103
- Object.defineProperty(AzureMapsMapImageryDescription.prototype, "cultureName", {
105118
+ Object.defineProperty(AzureMapsImageryDescription.prototype, "cultureName", {
105104
105119
  get: function () {
105105
105120
  return this.ag;
105106
105121
  },
@@ -105111,7 +105126,7 @@ var AzureMapsMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_sup
105111
105126
  enumerable: false,
105112
105127
  configurable: true
105113
105128
  });
105114
- Object.defineProperty(AzureMapsMapImageryDescription.prototype, "apiKey", {
105129
+ Object.defineProperty(AzureMapsImageryDescription.prototype, "apiKey", {
105115
105130
  get: function () {
105116
105131
  return this.ae;
105117
105132
  },
@@ -105122,7 +105137,7 @@ var AzureMapsMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_sup
105122
105137
  enumerable: false,
105123
105138
  configurable: true
105124
105139
  });
105125
- Object.defineProperty(AzureMapsMapImageryDescription.prototype, "apiVersion", {
105140
+ Object.defineProperty(AzureMapsImageryDescription.prototype, "apiVersion", {
105126
105141
  get: function () {
105127
105142
  return this.af;
105128
105143
  },
@@ -105133,7 +105148,7 @@ var AzureMapsMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_sup
105133
105148
  enumerable: false,
105134
105149
  configurable: true
105135
105150
  });
105136
- Object.defineProperty(AzureMapsMapImageryDescription.prototype, "imageryStyle", {
105151
+ Object.defineProperty(AzureMapsImageryDescription.prototype, "imageryStyle", {
105137
105152
  get: function () {
105138
105153
  return this.ah;
105139
105154
  },
@@ -105144,7 +105159,7 @@ var AzureMapsMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_sup
105144
105159
  enumerable: false,
105145
105160
  configurable: true
105146
105161
  });
105147
- Object.defineProperty(AzureMapsMapImageryDescription.prototype, "localizedView", {
105162
+ Object.defineProperty(AzureMapsImageryDescription.prototype, "localizedView", {
105148
105163
  get: function () {
105149
105164
  return this.ai;
105150
105165
  },
@@ -105155,7 +105170,7 @@ var AzureMapsMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_sup
105155
105170
  enumerable: false,
105156
105171
  configurable: true
105157
105172
  });
105158
- Object.defineProperty(AzureMapsMapImageryDescription.prototype, "timestamp", {
105173
+ Object.defineProperty(AzureMapsImageryDescription.prototype, "timestamp", {
105159
105174
  get: function () {
105160
105175
  return this.ac;
105161
105176
  },
@@ -105166,8 +105181,8 @@ var AzureMapsMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_sup
105166
105181
  enumerable: false,
105167
105182
  configurable: true
105168
105183
  });
105169
- AzureMapsMapImageryDescription.$t = markType(AzureMapsMapImageryDescription, 'AzureMapsMapImageryDescription', GeographicMapImageryDescription.$);
105170
- return AzureMapsMapImageryDescription;
105184
+ AzureMapsImageryDescription.$t = markType(AzureMapsImageryDescription, 'AzureMapsImageryDescription', GeographicMapImageryDescription.$);
105185
+ return AzureMapsImageryDescription;
105171
105186
  }(GeographicMapImageryDescription));
105172
105187
 
105173
105188
  /*
@@ -105179,39 +105194,39 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
105179
105194
  /**
105180
105195
  * @hidden
105181
105196
  */
105182
- var AzureMapsMapImageryDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
105183
- __extends(AzureMapsMapImageryDescriptionMetadata, _super);
105184
- function AzureMapsMapImageryDescriptionMetadata() {
105197
+ var AzureMapsImageryDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
105198
+ __extends(AzureMapsImageryDescriptionMetadata, _super);
105199
+ function AzureMapsImageryDescriptionMetadata() {
105185
105200
  return _super !== null && _super.apply(this, arguments) || this;
105186
105201
  }
105187
- AzureMapsMapImageryDescriptionMetadata.b = function (a) {
105188
- if (AzureMapsMapImageryDescriptionMetadata.a == null) {
105189
- AzureMapsMapImageryDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
105190
- AzureMapsMapImageryDescriptionMetadata.c(AzureMapsMapImageryDescriptionMetadata.a);
105202
+ AzureMapsImageryDescriptionMetadata.b = function (a) {
105203
+ if (AzureMapsImageryDescriptionMetadata.a == null) {
105204
+ AzureMapsImageryDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
105205
+ AzureMapsImageryDescriptionMetadata.c(AzureMapsImageryDescriptionMetadata.a);
105191
105206
  }
105192
- if (a.k(AzureMapsMapImageryDescriptionMetadata.a)) {
105207
+ if (a.k(AzureMapsImageryDescriptionMetadata.a)) {
105193
105208
  return;
105194
105209
  }
105195
- a.ac(AzureMapsMapImageryDescriptionMetadata.a);
105210
+ a.ac(AzureMapsImageryDescriptionMetadata.a);
105196
105211
  };
105197
- AzureMapsMapImageryDescriptionMetadata.c = function (a) {
105212
+ AzureMapsImageryDescriptionMetadata.c = function (a) {
105198
105213
  GeographicMapImageryDescriptionMetadata.c(a);
105199
105214
  a.item("CultureName", "String");
105200
105215
  a.item("ApiKey", "String");
105201
105216
  a.item("ApiVersion", "String");
105202
105217
  a.item("ImageryStyle", "ExportedType:string:AzureMapsImageryStyle");
105203
- a.item("ImageryStyle@names", "Road;Terra;DarkGrey;LabelsRoad;LabelsDarkGrey;HybridRoad;HybridDarkGrey;Imagery;WeatherRadar;WeatherInfrared;TrafficAbsolute;TrafficRelative;TrafficRelativeDark;TrafficDelay;TrafficReduced");
105218
+ a.item("ImageryStyle@names", "Road;Satellite;DarkGrey;LabelsRoadOverlay;LabelsDarkGreyOverlay;HybridRoadOverlay;HybridDarkGreyOverlay;TerraOverlay;WeatherRadarOverlay;WeatherInfraredOverlay;TrafficAbsoluteOverlay;TrafficRelativeOverlay;TrafficRelativeDarkOverlay;TrafficDelayOverlay;TrafficReducedOverlay");
105204
105219
  a.item("LocalizedView", "String");
105205
105220
  a.item("Timestamp", "Date");
105206
105221
  };
105207
- AzureMapsMapImageryDescriptionMetadata.d = function (a) {
105208
- AzureMapsMapImageryDescriptionMetadata.b(a);
105209
- a.ae("AzureMapsMapImagery", function () { return new AzureMapsMapImageryDescription(); });
105210
- a.ad("AzureMapsMapImagery", AzureMapsMapImageryDescriptionMetadata.a);
105222
+ AzureMapsImageryDescriptionMetadata.d = function (a) {
105223
+ AzureMapsImageryDescriptionMetadata.b(a);
105224
+ a.ae("AzureMapsImagery", function () { return new AzureMapsImageryDescription(); });
105225
+ a.ad("AzureMapsImagery", AzureMapsImageryDescriptionMetadata.a);
105211
105226
  };
105212
- AzureMapsMapImageryDescriptionMetadata.$t = markType(AzureMapsMapImageryDescriptionMetadata, 'AzureMapsMapImageryDescriptionMetadata');
105213
- AzureMapsMapImageryDescriptionMetadata.a = null;
105214
- return AzureMapsMapImageryDescriptionMetadata;
105227
+ AzureMapsImageryDescriptionMetadata.$t = markType(AzureMapsImageryDescriptionMetadata, 'AzureMapsImageryDescriptionMetadata');
105228
+ AzureMapsImageryDescriptionMetadata.a = null;
105229
+ return AzureMapsImageryDescriptionMetadata;
105215
105230
  }(Base));
105216
105231
 
105217
105232
  /*
@@ -105223,16 +105238,16 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
105223
105238
  /**
105224
105239
  * @hidden
105225
105240
  */
105226
- var AzureMapsMapImageryDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
105227
- __extends(AzureMapsMapImageryDescriptionModule, _super);
105228
- function AzureMapsMapImageryDescriptionModule() {
105241
+ var AzureMapsImageryDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
105242
+ __extends(AzureMapsImageryDescriptionModule, _super);
105243
+ function AzureMapsImageryDescriptionModule() {
105229
105244
  return _super !== null && _super.apply(this, arguments) || this;
105230
105245
  }
105231
- AzureMapsMapImageryDescriptionModule.register = function (a) {
105232
- AzureMapsMapImageryDescriptionMetadata.d(a);
105246
+ AzureMapsImageryDescriptionModule.register = function (a) {
105247
+ AzureMapsImageryDescriptionMetadata.d(a);
105233
105248
  };
105234
- AzureMapsMapImageryDescriptionModule.$t = markType(AzureMapsMapImageryDescriptionModule, 'AzureMapsMapImageryDescriptionModule');
105235
- return AzureMapsMapImageryDescriptionModule;
105249
+ AzureMapsImageryDescriptionModule.$t = markType(AzureMapsImageryDescriptionModule, 'AzureMapsImageryDescriptionModule');
105250
+ return AzureMapsImageryDescriptionModule;
105236
105251
  }(Base));
105237
105252
 
105238
105253
  /*
@@ -184365,6 +184380,123 @@ var DashboardTileGroupDescriptionDescriptionModule = /** @class */ /*@__PURE__*/
184365
184380
  return DashboardTileGroupDescriptionDescriptionModule;
184366
184381
  }(Base));
184367
184382
 
184383
+ /*
184384
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
184385
+ https://www.infragistics.com/legal/license/igultimate-la
184386
+ https://www.infragistics.com/legal/license/igultimate-eula
184387
+ 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.
184388
+ */
184389
+ /**
184390
+ * @hidden
184391
+ */
184392
+ var GridConditionalStyleFontInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
184393
+ __extends(GridConditionalStyleFontInfoDescription, _super);
184394
+ function GridConditionalStyleFontInfoDescription() {
184395
+ var _this = _super.call(this) || this;
184396
+ _this.j = null;
184397
+ _this.h = 0;
184398
+ _this.k = null;
184399
+ _this.l = null;
184400
+ return _this;
184401
+ }
184402
+ GridConditionalStyleFontInfoDescription.prototype.get_type = function () {
184403
+ return "GridConditionalStyleFontInfo";
184404
+ };
184405
+ Object.defineProperty(GridConditionalStyleFontInfoDescription.prototype, "type", {
184406
+ get: function () {
184407
+ return this.get_type();
184408
+ },
184409
+ enumerable: false,
184410
+ configurable: true
184411
+ });
184412
+ Object.defineProperty(GridConditionalStyleFontInfoDescription.prototype, "fontFamily", {
184413
+ get: function () {
184414
+ return this.j;
184415
+ },
184416
+ set: function (a) {
184417
+ this.j = a;
184418
+ this.g("FontFamily");
184419
+ },
184420
+ enumerable: false,
184421
+ configurable: true
184422
+ });
184423
+ Object.defineProperty(GridConditionalStyleFontInfoDescription.prototype, "fontSize", {
184424
+ get: function () {
184425
+ return this.h;
184426
+ },
184427
+ set: function (a) {
184428
+ this.h = a;
184429
+ this.g("FontSize");
184430
+ },
184431
+ enumerable: false,
184432
+ configurable: true
184433
+ });
184434
+ Object.defineProperty(GridConditionalStyleFontInfoDescription.prototype, "fontStyle", {
184435
+ get: function () {
184436
+ return this.k;
184437
+ },
184438
+ set: function (a) {
184439
+ this.k = a;
184440
+ this.g("FontStyle");
184441
+ },
184442
+ enumerable: false,
184443
+ configurable: true
184444
+ });
184445
+ Object.defineProperty(GridConditionalStyleFontInfoDescription.prototype, "fontWeight", {
184446
+ get: function () {
184447
+ return this.l;
184448
+ },
184449
+ set: function (a) {
184450
+ this.l = a;
184451
+ this.g("FontWeight");
184452
+ },
184453
+ enumerable: false,
184454
+ configurable: true
184455
+ });
184456
+ GridConditionalStyleFontInfoDescription.$t = markType(GridConditionalStyleFontInfoDescription, 'GridConditionalStyleFontInfoDescription', Description.$);
184457
+ return GridConditionalStyleFontInfoDescription;
184458
+ }(Description));
184459
+
184460
+ /*
184461
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
184462
+ https://www.infragistics.com/legal/license/igultimate-la
184463
+ https://www.infragistics.com/legal/license/igultimate-eula
184464
+ 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.
184465
+ */
184466
+ /**
184467
+ * @hidden
184468
+ */
184469
+ var GridConditionalStyleFontInfoDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
184470
+ __extends(GridConditionalStyleFontInfoDescriptionMetadata, _super);
184471
+ function GridConditionalStyleFontInfoDescriptionMetadata() {
184472
+ return _super !== null && _super.apply(this, arguments) || this;
184473
+ }
184474
+ GridConditionalStyleFontInfoDescriptionMetadata.b = function (a) {
184475
+ if (GridConditionalStyleFontInfoDescriptionMetadata.a == null) {
184476
+ GridConditionalStyleFontInfoDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
184477
+ GridConditionalStyleFontInfoDescriptionMetadata.c(GridConditionalStyleFontInfoDescriptionMetadata.a);
184478
+ }
184479
+ if (a.k(GridConditionalStyleFontInfoDescriptionMetadata.a)) {
184480
+ return;
184481
+ }
184482
+ a.ac(GridConditionalStyleFontInfoDescriptionMetadata.a);
184483
+ };
184484
+ GridConditionalStyleFontInfoDescriptionMetadata.c = function (a) {
184485
+ a.item("FontFamily", "(w:FontFamily/FontFamilyTransform,xam:FontFamily,wf:FontFamily,web:textStyle/FontFamilyTransform)String");
184486
+ a.item("FontSize", "(w:FontSize,xam:FontSize,wf:FontSize,web:textStyle/FontSizeTransform)Number:double");
184487
+ a.item("FontStyle", "(w:FontStyle/FontStyleTransform,xam:FontFamily/FontStyleTransform,wf:FontFamily/FontStyleTransform,web:textStyle/FontStyleTransform)String");
184488
+ a.item("FontWeight", "(w:FontWeight/FontWeightTransform,xam:FontFamily/FontWeightTransform,wf:FontFamily/FontWeightTransform,web:textStyle/FontWeightTransform)String");
184489
+ };
184490
+ GridConditionalStyleFontInfoDescriptionMetadata.d = function (a) {
184491
+ GridConditionalStyleFontInfoDescriptionMetadata.b(a);
184492
+ a.ae("GridConditionalStyleFontInfo", function () { return new GridConditionalStyleFontInfoDescription(); });
184493
+ a.ad("GridConditionalStyleFontInfo", GridConditionalStyleFontInfoDescriptionMetadata.a);
184494
+ };
184495
+ GridConditionalStyleFontInfoDescriptionMetadata.$t = markType(GridConditionalStyleFontInfoDescriptionMetadata, 'GridConditionalStyleFontInfoDescriptionMetadata');
184496
+ GridConditionalStyleFontInfoDescriptionMetadata.a = null;
184497
+ return GridConditionalStyleFontInfoDescriptionMetadata;
184498
+ }(Base));
184499
+
184368
184500
  /*
184369
184501
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
184370
184502
  https://www.infragistics.com/legal/license/igultimate-la
@@ -184469,32 +184601,39 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184469
184601
  __extends(GridConditionalStylePropertyDescription, _super);
184470
184602
  function GridConditionalStylePropertyDescription() {
184471
184603
  var _this = _super.call(this) || this;
184472
- _this.am = null;
184473
- _this.ak = null;
184474
- _this.ag = null;
184475
- _this.al = null;
184604
+ _this.a0 = null;
184605
+ _this.ax = null;
184606
+ _this.at = null;
184607
+ _this.ay = null;
184476
184608
  _this.n = null;
184477
- _this.ac = null;
184609
+ _this.ap = null;
184478
184610
  _this.j = null;
184479
184611
  _this.p = null;
184480
- _this.ai = null;
184612
+ _this.av = null;
184481
184613
  _this.l = null;
184482
184614
  _this.o = null;
184483
- _this.ae = null;
184615
+ _this.ar = null;
184484
184616
  _this.k = null;
184485
184617
  _this.q = null;
184486
- _this.an = null;
184618
+ _this.a1 = null;
184487
184619
  _this.m = null;
184620
+ _this.ah = 0;
184621
+ _this.aj = 0;
184622
+ _this.ab = false;
184623
+ _this.af = new Date();
184624
+ _this.z = null;
184625
+ _this.al = null;
184626
+ _this.az = null;
184627
+ _this.an = null;
184628
+ _this.ac = false;
184629
+ _this.au = null;
184488
184630
  _this.aq = null;
184489
- _this.z = false;
184490
- _this.ah = null;
184491
- _this.ad = null;
184492
- _this.aj = null;
184493
- _this.af = null;
184494
- _this.ao = null;
184631
+ _this.aw = null;
184632
+ _this.as = null;
184633
+ _this.a2 = null;
184495
184634
  _this.h = null;
184496
- _this.ap = null;
184497
- _this.ab = null;
184635
+ _this.a3 = null;
184636
+ _this.ao = null;
184498
184637
  return _this;
184499
184638
  }
184500
184639
  GridConditionalStylePropertyDescription.prototype.get_type = function () {
@@ -184509,10 +184648,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184509
184648
  });
184510
184649
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "stylingType", {
184511
184650
  get: function () {
184512
- return this.am;
184651
+ return this.a0;
184513
184652
  },
184514
184653
  set: function (a) {
184515
- this.am = a;
184654
+ this.a0 = a;
184516
184655
  this.g("StylingType");
184517
184656
  },
184518
184657
  enumerable: false,
@@ -184520,10 +184659,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184520
184659
  });
184521
184660
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "minimumType", {
184522
184661
  get: function () {
184523
- return this.ak;
184662
+ return this.ax;
184524
184663
  },
184525
184664
  set: function (a) {
184526
- this.ak = a;
184665
+ this.ax = a;
184527
184666
  this.g("MinimumType");
184528
184667
  },
184529
184668
  enumerable: false,
@@ -184531,10 +184670,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184531
184670
  });
184532
184671
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "maximumType", {
184533
184672
  get: function () {
184534
- return this.ag;
184673
+ return this.at;
184535
184674
  },
184536
184675
  set: function (a) {
184537
- this.ag = a;
184676
+ this.at = a;
184538
184677
  this.g("MaximumType");
184539
184678
  },
184540
184679
  enumerable: false,
@@ -184542,10 +184681,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184542
184681
  });
184543
184682
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "propertyName", {
184544
184683
  get: function () {
184545
- return this.al;
184684
+ return this.ay;
184546
184685
  },
184547
184686
  set: function (a) {
184548
- this.al = a;
184687
+ this.ay = a;
184549
184688
  this.g("PropertyName");
184550
184689
  },
184551
184690
  enumerable: false,
@@ -184564,10 +184703,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184564
184703
  });
184565
184704
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "inputValueExpressionString", {
184566
184705
  get: function () {
184567
- return this.ac;
184706
+ return this.ap;
184568
184707
  },
184569
184708
  set: function (a) {
184570
- this.ac = a;
184709
+ this.ap = a;
184571
184710
  this.g("InputValueExpressionString");
184572
184711
  },
184573
184712
  enumerable: false,
@@ -184597,10 +184736,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184597
184736
  });
184598
184737
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "minimumInputValueExpressionString", {
184599
184738
  get: function () {
184600
- return this.ai;
184739
+ return this.av;
184601
184740
  },
184602
184741
  set: function (a) {
184603
- this.ai = a;
184742
+ this.av = a;
184604
184743
  this.g("MinimumInputValueExpressionString");
184605
184744
  },
184606
184745
  enumerable: false,
@@ -184630,10 +184769,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184630
184769
  });
184631
184770
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "maximumInputValueExpressionString", {
184632
184771
  get: function () {
184633
- return this.ae;
184772
+ return this.ar;
184634
184773
  },
184635
184774
  set: function (a) {
184636
- this.ae = a;
184775
+ this.ar = a;
184637
184776
  this.g("MaximumInputValueExpressionString");
184638
184777
  },
184639
184778
  enumerable: false,
@@ -184663,10 +184802,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184663
184802
  });
184664
184803
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "sumInputValueExpressionString", {
184665
184804
  get: function () {
184666
- return this.an;
184805
+ return this.a1;
184667
184806
  },
184668
184807
  set: function (a) {
184669
- this.an = a;
184808
+ this.a1 = a;
184670
184809
  this.g("SumInputValueExpressionString");
184671
184810
  },
184672
184811
  enumerable: false,
@@ -184683,23 +184822,100 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184683
184822
  enumerable: false,
184684
184823
  configurable: true
184685
184824
  });
184686
- Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "valueRef", {
184825
+ Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "doubleValue", {
184687
184826
  get: function () {
184688
- return this.aq;
184827
+ return this.ah;
184689
184828
  },
184690
184829
  set: function (a) {
184691
- this.aq = a;
184692
- this.g("ValueRef");
184830
+ this.ah = a;
184831
+ this.g("DoubleValue");
184693
184832
  },
184694
184833
  enumerable: false,
184695
184834
  configurable: true
184696
184835
  });
184697
- Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "shouldSetValue", {
184836
+ Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "intValue", {
184837
+ get: function () {
184838
+ return this.aj;
184839
+ },
184840
+ set: function (a) {
184841
+ this.aj = a;
184842
+ this.g("IntValue");
184843
+ },
184844
+ enumerable: false,
184845
+ configurable: true
184846
+ });
184847
+ Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "boolValue", {
184848
+ get: function () {
184849
+ return this.ab;
184850
+ },
184851
+ set: function (a) {
184852
+ this.ab = a;
184853
+ this.g("BoolValue");
184854
+ },
184855
+ enumerable: false,
184856
+ configurable: true
184857
+ });
184858
+ Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "dateValue", {
184859
+ get: function () {
184860
+ return this.af;
184861
+ },
184862
+ set: function (a) {
184863
+ this.af = a;
184864
+ this.g("DateValue");
184865
+ },
184866
+ enumerable: false,
184867
+ configurable: true
184868
+ });
184869
+ Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "fontValue", {
184698
184870
  get: function () {
184699
184871
  return this.z;
184700
184872
  },
184701
184873
  set: function (a) {
184702
184874
  this.z = a;
184875
+ this.g("FontValue");
184876
+ },
184877
+ enumerable: false,
184878
+ configurable: true
184879
+ });
184880
+ Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "objectValue", {
184881
+ get: function () {
184882
+ return this.al;
184883
+ },
184884
+ set: function (a) {
184885
+ this.al = a;
184886
+ this.g("ObjectValue");
184887
+ },
184888
+ enumerable: false,
184889
+ configurable: true
184890
+ });
184891
+ Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "stringValue", {
184892
+ get: function () {
184893
+ return this.az;
184894
+ },
184895
+ set: function (a) {
184896
+ this.az = a;
184897
+ this.g("StringValue");
184898
+ },
184899
+ enumerable: false,
184900
+ configurable: true
184901
+ });
184902
+ Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "brushValue", {
184903
+ get: function () {
184904
+ return this.an;
184905
+ },
184906
+ set: function (a) {
184907
+ this.an = a;
184908
+ this.g("BrushValue");
184909
+ },
184910
+ enumerable: false,
184911
+ configurable: true
184912
+ });
184913
+ Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "shouldSetValue", {
184914
+ get: function () {
184915
+ return this.ac;
184916
+ },
184917
+ set: function (a) {
184918
+ this.ac = a;
184703
184919
  this.g("ShouldSetValue");
184704
184920
  },
184705
184921
  enumerable: false,
@@ -184707,10 +184923,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184707
184923
  });
184708
184924
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "minimumColor", {
184709
184925
  get: function () {
184710
- return this.ah;
184926
+ return this.au;
184711
184927
  },
184712
184928
  set: function (a) {
184713
- this.ah = a;
184929
+ this.au = a;
184714
184930
  this.g("MinimumColor");
184715
184931
  },
184716
184932
  enumerable: false,
@@ -184718,10 +184934,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184718
184934
  });
184719
184935
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "maximumColor", {
184720
184936
  get: function () {
184721
- return this.ad;
184937
+ return this.aq;
184722
184938
  },
184723
184939
  set: function (a) {
184724
- this.ad = a;
184940
+ this.aq = a;
184725
184941
  this.g("MaximumColor");
184726
184942
  },
184727
184943
  enumerable: false,
@@ -184729,10 +184945,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184729
184945
  });
184730
184946
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "minimumInputValueRef", {
184731
184947
  get: function () {
184732
- return this.aj;
184948
+ return this.aw;
184733
184949
  },
184734
184950
  set: function (a) {
184735
- this.aj = a;
184951
+ this.aw = a;
184736
184952
  this.g("MinimumInputValueRef");
184737
184953
  },
184738
184954
  enumerable: false,
@@ -184740,10 +184956,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184740
184956
  });
184741
184957
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "maximumInputValueRef", {
184742
184958
  get: function () {
184743
- return this.af;
184959
+ return this.as;
184744
184960
  },
184745
184961
  set: function (a) {
184746
- this.af = a;
184962
+ this.as = a;
184747
184963
  this.g("MaximumInputValueRef");
184748
184964
  },
184749
184965
  enumerable: false,
@@ -184751,10 +184967,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184751
184967
  });
184752
184968
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "sumInputValueRef", {
184753
184969
  get: function () {
184754
- return this.ao;
184970
+ return this.a2;
184755
184971
  },
184756
184972
  set: function (a) {
184757
- this.ao = a;
184973
+ this.a2 = a;
184758
184974
  this.g("SumInputValueRef");
184759
184975
  },
184760
184976
  enumerable: false,
@@ -184773,10 +184989,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184773
184989
  });
184774
184990
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "valueCollectionRef", {
184775
184991
  get: function () {
184776
- return this.ap;
184992
+ return this.a3;
184777
184993
  },
184778
184994
  set: function (a) {
184779
- this.ap = a;
184995
+ this.a3 = a;
184780
184996
  this.g("ValueCollectionRef");
184781
184997
  },
184782
184998
  enumerable: false,
@@ -184784,10 +185000,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
184784
185000
  });
184785
185001
  Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "filterStringErrorsParsingRef", {
184786
185002
  get: function () {
184787
- return this.ab;
185003
+ return this.ao;
184788
185004
  },
184789
185005
  set: function (a) {
184790
- this.ab = a;
185006
+ this.ao = a;
184791
185007
  this.g("FilterStringErrorsParsingRef");
184792
185008
  },
184793
185009
  enumerable: false,
@@ -184821,6 +185037,7 @@ var GridConditionalStylePropertyDescriptionMetadata = /** @class */ /*@__PURE__*
184821
185037
  }
184822
185038
  a.ac(GridConditionalStylePropertyDescriptionMetadata.a);
184823
185039
  FilterExpressionDescriptionMetadata.d(a);
185040
+ GridConditionalStyleFontInfoDescriptionMetadata.d(a);
184824
185041
  GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata.d(a);
184825
185042
  };
184826
185043
  GridConditionalStylePropertyDescriptionMetadata.c = function (a) {
@@ -184843,7 +185060,14 @@ var GridConditionalStylePropertyDescriptionMetadata = /** @class */ /*@__PURE__*
184843
185060
  a.item("SumInputValueExpression", "ExportedType:IFilterExpression");
184844
185061
  a.item("SumInputValueExpressionString", "String");
184845
185062
  a.item("ActualSumInputValueExpression", "ExportedType:IFilterExpression");
184846
- a.item("ValueRef", "(w:Value,wf:Value)DataRef");
185063
+ a.item("DoubleValue", "Number:double");
185064
+ a.item("IntValue", "Number:int");
185065
+ a.item("BoolValue", "Boolean");
185066
+ a.item("DateValue", "Date");
185067
+ a.item("FontValue", "ExportedType:GridConditionalStyleFontInfo");
185068
+ a.item("ObjectValue", "Unknown");
185069
+ a.item("StringValue", "String");
185070
+ a.item("BrushValue", "Brush");
184847
185071
  a.item("ShouldSetValue", "Boolean");
184848
185072
  a.item("MinimumColor", "Brush");
184849
185073
  a.item("MaximumColor", "Brush");
@@ -191438,23 +191662,23 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
191438
191662
  /**
191439
191663
  * @hidden
191440
191664
  */
191441
- var LegendSizeChangedEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
191442
- __extends(LegendSizeChangedEventArgsDescription, _super);
191443
- function LegendSizeChangedEventArgsDescription() {
191665
+ var LegendTextContentChangedEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
191666
+ __extends(LegendTextContentChangedEventArgsDescription, _super);
191667
+ function LegendTextContentChangedEventArgsDescription() {
191444
191668
  return _super.call(this) || this;
191445
191669
  }
191446
- LegendSizeChangedEventArgsDescription.prototype.get_type = function () {
191447
- return "LegendSizeChangedEventArgs";
191670
+ LegendTextContentChangedEventArgsDescription.prototype.get_type = function () {
191671
+ return "LegendTextContentChangedEventArgs";
191448
191672
  };
191449
- Object.defineProperty(LegendSizeChangedEventArgsDescription.prototype, "type", {
191673
+ Object.defineProperty(LegendTextContentChangedEventArgsDescription.prototype, "type", {
191450
191674
  get: function () {
191451
191675
  return this.get_type();
191452
191676
  },
191453
191677
  enumerable: false,
191454
191678
  configurable: true
191455
191679
  });
191456
- LegendSizeChangedEventArgsDescription.$t = markType(LegendSizeChangedEventArgsDescription, 'LegendSizeChangedEventArgsDescription', Description.$);
191457
- return LegendSizeChangedEventArgsDescription;
191680
+ LegendTextContentChangedEventArgsDescription.$t = markType(LegendTextContentChangedEventArgsDescription, 'LegendTextContentChangedEventArgsDescription', Description.$);
191681
+ return LegendTextContentChangedEventArgsDescription;
191458
191682
  }(Description));
191459
191683
 
191460
191684
  /*
@@ -191466,31 +191690,31 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
191466
191690
  /**
191467
191691
  * @hidden
191468
191692
  */
191469
- var LegendSizeChangedEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
191470
- __extends(LegendSizeChangedEventArgsDescriptionMetadata, _super);
191471
- function LegendSizeChangedEventArgsDescriptionMetadata() {
191693
+ var LegendTextContentChangedEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
191694
+ __extends(LegendTextContentChangedEventArgsDescriptionMetadata, _super);
191695
+ function LegendTextContentChangedEventArgsDescriptionMetadata() {
191472
191696
  return _super !== null && _super.apply(this, arguments) || this;
191473
191697
  }
191474
- LegendSizeChangedEventArgsDescriptionMetadata.b = function (a) {
191475
- if (LegendSizeChangedEventArgsDescriptionMetadata.a == null) {
191476
- LegendSizeChangedEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
191477
- LegendSizeChangedEventArgsDescriptionMetadata.c(LegendSizeChangedEventArgsDescriptionMetadata.a);
191698
+ LegendTextContentChangedEventArgsDescriptionMetadata.b = function (a) {
191699
+ if (LegendTextContentChangedEventArgsDescriptionMetadata.a == null) {
191700
+ LegendTextContentChangedEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
191701
+ LegendTextContentChangedEventArgsDescriptionMetadata.c(LegendTextContentChangedEventArgsDescriptionMetadata.a);
191478
191702
  }
191479
- if (a.k(LegendSizeChangedEventArgsDescriptionMetadata.a)) {
191703
+ if (a.k(LegendTextContentChangedEventArgsDescriptionMetadata.a)) {
191480
191704
  return;
191481
191705
  }
191482
- a.ac(LegendSizeChangedEventArgsDescriptionMetadata.a);
191706
+ a.ac(LegendTextContentChangedEventArgsDescriptionMetadata.a);
191483
191707
  };
191484
- LegendSizeChangedEventArgsDescriptionMetadata.c = function (a) {
191708
+ LegendTextContentChangedEventArgsDescriptionMetadata.c = function (a) {
191485
191709
  };
191486
- LegendSizeChangedEventArgsDescriptionMetadata.d = function (a) {
191487
- LegendSizeChangedEventArgsDescriptionMetadata.b(a);
191488
- a.ae("LegendSizeChangedEventArgs", function () { return new LegendSizeChangedEventArgsDescription(); });
191489
- a.ad("LegendSizeChangedEventArgs", LegendSizeChangedEventArgsDescriptionMetadata.a);
191710
+ LegendTextContentChangedEventArgsDescriptionMetadata.d = function (a) {
191711
+ LegendTextContentChangedEventArgsDescriptionMetadata.b(a);
191712
+ a.ae("LegendTextContentChangedEventArgs", function () { return new LegendTextContentChangedEventArgsDescription(); });
191713
+ a.ad("LegendTextContentChangedEventArgs", LegendTextContentChangedEventArgsDescriptionMetadata.a);
191490
191714
  };
191491
- LegendSizeChangedEventArgsDescriptionMetadata.$t = markType(LegendSizeChangedEventArgsDescriptionMetadata, 'LegendSizeChangedEventArgsDescriptionMetadata');
191492
- LegendSizeChangedEventArgsDescriptionMetadata.a = null;
191493
- return LegendSizeChangedEventArgsDescriptionMetadata;
191715
+ LegendTextContentChangedEventArgsDescriptionMetadata.$t = markType(LegendTextContentChangedEventArgsDescriptionMetadata, 'LegendTextContentChangedEventArgsDescriptionMetadata');
191716
+ LegendTextContentChangedEventArgsDescriptionMetadata.a = null;
191717
+ return LegendTextContentChangedEventArgsDescriptionMetadata;
191494
191718
  }(Base));
191495
191719
 
191496
191720
  /*
@@ -191521,7 +191745,7 @@ var LegendBaseDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_supe
191521
191745
  a.ac(LegendBaseDescriptionMetadata.a);
191522
191746
  LegendMouseButtonEventArgsDescriptionMetadata.d(a);
191523
191747
  LegendMouseEventArgsDescriptionMetadata.d(a);
191524
- LegendSizeChangedEventArgsDescriptionMetadata.d(a);
191748
+ LegendTextContentChangedEventArgsDescriptionMetadata.d(a);
191525
191749
  };
191526
191750
  LegendBaseDescriptionMetadata.c = function (a) {
191527
191751
  a.item("LegendItemMouseLeftButtonDownRef", "EventRef::legendItemMouseLeftButtonDown");
@@ -191529,7 +191753,7 @@ var LegendBaseDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_supe
191529
191753
  a.item("LegendItemMouseEnterRef", "EventRef::legendItemMouseEnter");
191530
191754
  a.item("LegendItemMouseLeaveRef", "EventRef::legendItemMouseLeave");
191531
191755
  a.item("LegendItemMouseMoveRef", "EventRef::legendItemMouseMove");
191532
- a.item("LegendSizeChangedRef", "EventRef::legendSizeChanged");
191756
+ a.item("LegendTextContentChangedRef", "EventRef::legendTextContentChanged");
191533
191757
  LegendBaseDescriptionMetadata.e(a);
191534
191758
  };
191535
191759
  LegendBaseDescriptionMetadata.d = function (a) {
@@ -191639,13 +191863,13 @@ var LegendBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
191639
191863
  enumerable: false,
191640
191864
  configurable: true
191641
191865
  });
191642
- Object.defineProperty(LegendBaseDescription.prototype, "legendSizeChangedRef", {
191866
+ Object.defineProperty(LegendBaseDescription.prototype, "legendTextContentChangedRef", {
191643
191867
  get: function () {
191644
191868
  return this.n;
191645
191869
  },
191646
191870
  set: function (a) {
191647
191871
  this.n = a;
191648
- this.g("LegendSizeChangedRef");
191872
+ this.g("LegendTextContentChangedRef");
191649
191873
  },
191650
191874
  enumerable: false,
191651
191875
  configurable: true
@@ -229247,123 +229471,6 @@ var GridCompoundConditionalStyleDescriptionMetadata = /** @class */ /*@__PURE__*
229247
229471
  return GridCompoundConditionalStyleDescriptionMetadata;
229248
229472
  }(Base));
229249
229473
 
229250
- /*
229251
- THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
229252
- https://www.infragistics.com/legal/license/igultimate-la
229253
- https://www.infragistics.com/legal/license/igultimate-eula
229254
- 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.
229255
- */
229256
- /**
229257
- * @hidden
229258
- */
229259
- var GridConditionalStyleFontInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
229260
- __extends(GridConditionalStyleFontInfoDescription, _super);
229261
- function GridConditionalStyleFontInfoDescription() {
229262
- var _this = _super.call(this) || this;
229263
- _this.j = null;
229264
- _this.h = 0;
229265
- _this.k = null;
229266
- _this.l = null;
229267
- return _this;
229268
- }
229269
- GridConditionalStyleFontInfoDescription.prototype.get_type = function () {
229270
- return "GridConditionalStyleFontInfo";
229271
- };
229272
- Object.defineProperty(GridConditionalStyleFontInfoDescription.prototype, "type", {
229273
- get: function () {
229274
- return this.get_type();
229275
- },
229276
- enumerable: false,
229277
- configurable: true
229278
- });
229279
- Object.defineProperty(GridConditionalStyleFontInfoDescription.prototype, "fontFamily", {
229280
- get: function () {
229281
- return this.j;
229282
- },
229283
- set: function (a) {
229284
- this.j = a;
229285
- this.g("FontFamily");
229286
- },
229287
- enumerable: false,
229288
- configurable: true
229289
- });
229290
- Object.defineProperty(GridConditionalStyleFontInfoDescription.prototype, "fontSize", {
229291
- get: function () {
229292
- return this.h;
229293
- },
229294
- set: function (a) {
229295
- this.h = a;
229296
- this.g("FontSize");
229297
- },
229298
- enumerable: false,
229299
- configurable: true
229300
- });
229301
- Object.defineProperty(GridConditionalStyleFontInfoDescription.prototype, "fontStyle", {
229302
- get: function () {
229303
- return this.k;
229304
- },
229305
- set: function (a) {
229306
- this.k = a;
229307
- this.g("FontStyle");
229308
- },
229309
- enumerable: false,
229310
- configurable: true
229311
- });
229312
- Object.defineProperty(GridConditionalStyleFontInfoDescription.prototype, "fontWeight", {
229313
- get: function () {
229314
- return this.l;
229315
- },
229316
- set: function (a) {
229317
- this.l = a;
229318
- this.g("FontWeight");
229319
- },
229320
- enumerable: false,
229321
- configurable: true
229322
- });
229323
- GridConditionalStyleFontInfoDescription.$t = markType(GridConditionalStyleFontInfoDescription, 'GridConditionalStyleFontInfoDescription', Description.$);
229324
- return GridConditionalStyleFontInfoDescription;
229325
- }(Description));
229326
-
229327
- /*
229328
- THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
229329
- https://www.infragistics.com/legal/license/igultimate-la
229330
- https://www.infragistics.com/legal/license/igultimate-eula
229331
- 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.
229332
- */
229333
- /**
229334
- * @hidden
229335
- */
229336
- var GridConditionalStyleFontInfoDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
229337
- __extends(GridConditionalStyleFontInfoDescriptionMetadata, _super);
229338
- function GridConditionalStyleFontInfoDescriptionMetadata() {
229339
- return _super !== null && _super.apply(this, arguments) || this;
229340
- }
229341
- GridConditionalStyleFontInfoDescriptionMetadata.b = function (a) {
229342
- if (GridConditionalStyleFontInfoDescriptionMetadata.a == null) {
229343
- GridConditionalStyleFontInfoDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
229344
- GridConditionalStyleFontInfoDescriptionMetadata.c(GridConditionalStyleFontInfoDescriptionMetadata.a);
229345
- }
229346
- if (a.k(GridConditionalStyleFontInfoDescriptionMetadata.a)) {
229347
- return;
229348
- }
229349
- a.ac(GridConditionalStyleFontInfoDescriptionMetadata.a);
229350
- };
229351
- GridConditionalStyleFontInfoDescriptionMetadata.c = function (a) {
229352
- a.item("FontFamily", "(w:FontFamily/FontFamilyTransform,xam:FontFamily,wf:FontFamily,web:textStyle/FontFamilyTransform)String");
229353
- a.item("FontSize", "(w:FontSize,xam:FontSize,wf:FontSize,web:textStyle/FontSizeTransform)Number:double");
229354
- a.item("FontStyle", "(w:FontStyle/FontStyleTransform,xam:FontFamily/FontStyleTransform,wf:FontFamily/FontStyleTransform,web:textStyle/FontStyleTransform)String");
229355
- a.item("FontWeight", "(w:FontWeight/FontWeightTransform,xam:FontFamily/FontWeightTransform,wf:FontFamily/FontWeightTransform,web:textStyle/FontWeightTransform)String");
229356
- };
229357
- GridConditionalStyleFontInfoDescriptionMetadata.d = function (a) {
229358
- GridConditionalStyleFontInfoDescriptionMetadata.b(a);
229359
- a.ae("GridConditionalStyleFontInfo", function () { return new GridConditionalStyleFontInfoDescription(); });
229360
- a.ad("GridConditionalStyleFontInfo", GridConditionalStyleFontInfoDescriptionMetadata.a);
229361
- };
229362
- GridConditionalStyleFontInfoDescriptionMetadata.$t = markType(GridConditionalStyleFontInfoDescriptionMetadata, 'GridConditionalStyleFontInfoDescriptionMetadata');
229363
- GridConditionalStyleFontInfoDescriptionMetadata.a = null;
229364
- return GridConditionalStyleFontInfoDescriptionMetadata;
229365
- }(Base));
229366
-
229367
229474
  /*
229368
229475
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
229369
229476
  https://www.infragistics.com/legal/license/igultimate-la
@@ -300219,7 +300326,7 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300219
300326
  $ret.image = d_1;
300220
300327
  return $ret;
300221
300328
  })());
300222
- this_1.b.by(f);
300329
+ this_1.b.bu(f);
300223
300330
  }
300224
300331
  if (this_1.g.containsKey(d_1)) {
300225
300332
  var g = this_1.g.item(d_1);
@@ -300308,7 +300415,7 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300308
300415
  $ret.image = c_1;
300309
300416
  return $ret;
300310
300417
  })());
300311
- this.b.bz(g);
300418
+ this.b.bv(g);
300312
300419
  f_1 = g.uri;
300313
300420
  if (f_1 != null) {
300314
300421
  c_1.src = f_1;
@@ -300373,9 +300480,9 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300373
300480
  f.clear();
300374
300481
  this.g.removeItem(e);
300375
300482
  }
300376
- this.b.bq(c, c.i.ac);
300483
+ this.b.bo(c, c.i.ac);
300377
300484
  if (c.i != null) {
300378
- this.b.ce(c);
300485
+ this.b.ca(c);
300379
300486
  }
300380
300487
  this.q();
300381
300488
  this.ad();
@@ -300414,7 +300521,7 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300414
300521
  };
300415
300522
  XamMultiScaleImageView.prototype.aq = function () {
300416
300523
  if (this.p == -1) {
300417
- this.p = window.setInterval(runOn(this.b, this.b.cd), 50);
300524
+ this.p = window.setInterval(runOn(this.b, this.b.b9), 50);
300418
300525
  }
300419
300526
  };
300420
300527
  XamMultiScaleImageView.prototype.as = function () {
@@ -300425,7 +300532,7 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300425
300532
  };
300426
300533
  XamMultiScaleImageView.prototype.ap = function () {
300427
300534
  if (this.o == -1) {
300428
- this.o = window.setInterval(runOn(this.b, this.b.bt), 50);
300535
+ this.o = window.setInterval(runOn(this.b, this.b.br), 50);
300429
300536
  }
300430
300537
  };
300431
300538
  XamMultiScaleImageView.prototype.ar = function () {
@@ -300437,7 +300544,7 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300437
300544
  XamMultiScaleImageView.prototype.t = function () {
300438
300545
  if (this.p != -1) {
300439
300546
  this.ar();
300440
- this.b.b2();
300547
+ this.b.by();
300441
300548
  }
300442
300549
  };
300443
300550
  XamMultiScaleImageView.prototype.ae = function (a) {
@@ -300456,8 +300563,8 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300456
300563
  this.m.setAttribute("height", truncate((b * this.b.a4)).toString());
300457
300564
  this.m.setStyleProperty("width", a.toString() + "px");
300458
300565
  this.m.setStyleProperty("height", b.toString() + "px");
300459
- this.b.cr = new Rect(0, 0, 0, a, b);
300460
- this.b.b9();
300566
+ this.b.cn = new Rect(0, 0, 0, a, b);
300567
+ this.b.b5();
300461
300568
  };
300462
300569
  XamMultiScaleImageView.prototype.aj = function () {
300463
300570
  this.ad();
@@ -300505,7 +300612,7 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300505
300612
  if (!this.au.isEmpty) {
300506
300613
  this.c.l(this.au.left, this.au.top, this.au.width, this.au.height);
300507
300614
  }
300508
- this.au = this.b.cr;
300615
+ this.au = this.b.cn;
300509
300616
  for (var a = 0; a < this.h.count; a++) {
300510
300617
  var b = this.h._inner[a];
300511
300618
  if (b.s == 0) {
@@ -300521,8 +300628,8 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300521
300628
  if (this.c.d && this.b.a4 != 1) {
300522
300629
  this.c.z();
300523
300630
  }
300524
- this.b.bv();
300525
- this.b.b0();
300631
+ this.b.bt();
300632
+ this.b.bw();
300526
300633
  };
300527
300634
  XamMultiScaleImageView.prototype.d = function () {
300528
300635
  var a = true;
@@ -300549,10 +300656,10 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300549
300656
  if (b.d.width < 1 || b.d.height < 1) {
300550
300657
  return;
300551
300658
  }
300552
- this.c.o(b.c, c, b.d.left, b.d.top, b.d.width, b.d.height, Math.round(a.n + this.b.cr.left), Math.round(a.o + this.b.cr.top), a.width, a.height);
300659
+ this.c.o(b.c, c, b.d.left, b.d.top, b.d.width, b.d.height, Math.round(a.n + this.b.cn.left), Math.round(a.o + this.b.cn.top), a.width, a.height);
300553
300660
  }
300554
300661
  else {
300555
- this.c.n(b.c, c, Math.round(a.n + this.b.cr.left), Math.round(a.o + this.b.cr.top), a.width, a.height);
300662
+ this.c.n(b.c, c, Math.round(a.n + this.b.cn.left), Math.round(a.o + this.b.cn.top), a.width, a.height);
300556
300663
  }
300557
300664
  };
300558
300665
  XamMultiScaleImageView.prototype.e = function (a) {
@@ -300577,8 +300684,8 @@ var XamMultiScaleImageView = /** @class */ /*@__PURE__*/ (function (_super) {
300577
300684
  this.q();
300578
300685
  };
300579
300686
  XamMultiScaleImageView.prototype.ai = function (a) {
300580
- this.b.cr = a;
300581
- this.b.b9();
300687
+ this.b.cn = a;
300688
+ this.b.b5();
300582
300689
  };
300583
300690
  XamMultiScaleImageView.prototype.preRender = function () {
300584
300691
  };
@@ -300682,7 +300789,7 @@ var XamMultiScaleTileSource = /** @class */ /*@__PURE__*/ (function (_super) {
300682
300789
  };
300683
300790
  XamMultiScaleTileSource.prototype.y = function (a, b, c, d) {
300684
300791
  if (this.k != null) {
300685
- this.k.bu(a, b, c, d);
300792
+ this.k.bs(a, b, c, d);
300686
300793
  }
300687
300794
  };
300688
300795
  XamMultiScaleTileSource.$t = markType(XamMultiScaleTileSource, 'XamMultiScaleTileSource', DependencyObject.$);
@@ -300698,14 +300805,14 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300698
300805
  _this.ap = null;
300699
300806
  _this.an = null;
300700
300807
  _this.ak = null;
300701
- _this.co = null;
300808
+ _this.ck = null;
300702
300809
  _this.a2 = 0;
300703
300810
  _this.at = false;
300704
300811
  _this.propertyChanged = null;
300705
- _this.bc = 0;
300706
- _this.bd = 0;
300812
+ _this.ba = 0;
300813
+ _this.bb = 0;
300707
300814
  _this.a0 = new Date();
300708
- _this.cp = null;
300815
+ _this.cl = null;
300709
300816
  _this.a3 = 0;
300710
300817
  _this.ay = new List$1(Tile.$, 0);
300711
300818
  _this.aw = false;
@@ -300713,19 +300820,17 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300713
300820
  _this.az = new List$1(Tile.$, 0);
300714
300821
  _this.imageTilesReady = null;
300715
300822
  _this.as = false;
300716
- _this.cr = null;
300823
+ _this.cn = null;
300717
300824
  _this.ag = null;
300718
300825
  _this.imagesChanged = null;
300719
300826
  _this.downloadingImage = null;
300720
300827
  _this.cancellingImage = null;
300721
- _this.beforeDownloadStart = null;
300722
- _this.afterDownloadStart = null;
300723
300828
  _this.a1 = 1;
300724
- _this.cr = Rect.empty;
300829
+ _this.cn = Rect.empty;
300725
300830
  _this.ag = new CanvasRenderScheduler();
300726
300831
  _this.an = new XamMultiScaleImageView(_this);
300727
300832
  _this.ab = XamMultiScaleImage.$;
300728
- _this.co = _this.cq;
300833
+ _this.ck = _this.cm;
300729
300834
  _this.a2 = _this.a5;
300730
300835
  return _this;
300731
300836
  }
@@ -300739,25 +300844,25 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300739
300844
  }
300740
300845
  this.ak = a;
300741
300846
  if (this.ak != null) {
300742
- this.ak.register(this, runOn(this, this.ca));
300847
+ this.ak.register(this, runOn(this, this.b6));
300743
300848
  }
300744
300849
  },
300745
300850
  enumerable: false,
300746
300851
  configurable: true
300747
300852
  });
300748
- XamMultiScaleImage.prototype.be = function () {
300749
- if (!stringIsNullOrEmpty(this.bh)) {
300750
- return this.bh;
300853
+ XamMultiScaleImage.prototype.bc = function () {
300854
+ if (!stringIsNullOrEmpty(this.bf)) {
300855
+ return this.bf;
300751
300856
  }
300752
300857
  return null;
300753
300858
  };
300754
- XamMultiScaleImage.prototype.bf = function () {
300755
- if (!stringIsNullOrEmpty(this.bl)) {
300756
- return this.bl;
300859
+ XamMultiScaleImage.prototype.bd = function () {
300860
+ if (!stringIsNullOrEmpty(this.bj)) {
300861
+ return this.bj;
300757
300862
  }
300758
300863
  return null;
300759
300864
  };
300760
- XamMultiScaleImage.prototype.b1 = function (a, b, c) {
300865
+ XamMultiScaleImage.prototype.bx = function (a, b, c) {
300761
300866
  var d = new PropertyChangedEventArgs(a);
300762
300867
  if (this.propertyChanged != null) {
300763
300868
  this.propertyChanged(this, d);
@@ -300767,15 +300872,15 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300767
300872
  if (this.ao != null) {
300768
300873
  this.ao.k = this;
300769
300874
  }
300770
- this.b8();
300771
- this.cb();
300772
- this.b9();
300875
+ this.b4();
300876
+ this.b7();
300877
+ this.b5();
300773
300878
  break;
300774
300879
  case XamMultiScaleImage.$$p[6]:
300775
- this.cc();
300880
+ this.b8();
300776
300881
  break;
300777
300882
  case XamMultiScaleImage.$$p[7]:
300778
- this.cc();
300883
+ this.b8();
300779
300884
  break;
300780
300885
  case XamMultiScaleImage.$$p[4]:
300781
300886
  if (!this.ax) {
@@ -300784,40 +300889,40 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300784
300889
  break;
300785
300890
  case XamMultiScaleImage.$$p[0]:
300786
300891
  this.at = this.av;
300787
- this.b9();
300892
+ this.b5();
300788
300893
  break;
300789
300894
  }
300790
300895
  };
300791
300896
  XamMultiScaleImage.prototype.v = function () {
300792
300897
  _super.prototype.v.call(this);
300793
- this.b9();
300898
+ this.b5();
300794
300899
  };
300795
- XamMultiScaleImage.prototype.cb = function () {
300796
- this.cf();
300900
+ XamMultiScaleImage.prototype.b7 = function () {
300901
+ this.cb();
300797
300902
  if (this.ao != null) {
300798
- this.bc = Convert.toInt32(logBase(this.ao.r, 2));
300799
- this.bd = Convert.toInt32(logBase(this.ao.v, 2));
300903
+ this.ba = Convert.toInt32(logBase(this.ao.r, 2));
300904
+ this.bb = Convert.toInt32(logBase(this.ao.v, 2));
300800
300905
  }
300801
300906
  };
300802
- XamMultiScaleImage.prototype.bu = function (a, b, c, d) {
300803
- this.b8();
300804
- this.cb();
300805
- this.b9();
300907
+ XamMultiScaleImage.prototype.bs = function (a, b, c, d) {
300908
+ this.b4();
300909
+ this.b7();
300910
+ this.b5();
300806
300911
  };
300807
- XamMultiScaleImage.prototype.cc = function () {
300912
+ XamMultiScaleImage.prototype.b8 = function () {
300808
300913
  if (this.ax) {
300809
300914
  this.a0 = dateNow();
300810
- this.cp = this.co;
300915
+ this.cl = this.ck;
300811
300916
  this.a3 = this.a2;
300812
300917
  this.an.aq();
300813
300918
  }
300814
300919
  else {
300815
- this.co = this.cq;
300920
+ this.ck = this.cm;
300816
300921
  this.a2 = this.a5;
300817
- this.b9();
300922
+ this.b5();
300818
300923
  }
300819
300924
  };
300820
- XamMultiScaleImage.prototype.cd = function () {
300925
+ XamMultiScaleImage.prototype.b9 = function () {
300821
300926
  var a = 2;
300822
300927
  var b = dateNow().getTime() - this.a0.getTime();
300823
300928
  var c = b / 1000;
@@ -300825,15 +300930,15 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300825
300930
  var e = this.aj != null ? this.aj.ease(d) : d;
300826
300931
  var f = 1 - e;
300827
300932
  this.a2 = this.a3 * f + this.a5 * e;
300828
- this.co = { $type: Point_$type, x: this.cp.x * f + this.cq.x * e, y: this.cp.y * f + this.cq.y * e };
300933
+ this.ck = { $type: Point_$type, x: this.cl.x * f + this.cm.x * e, y: this.cl.y * f + this.cm.y * e };
300829
300934
  if (d >= 1) {
300830
300935
  this.an.as();
300831
300936
  }
300832
300937
  else {
300833
300938
  }
300834
- this.b9();
300939
+ this.b5();
300835
300940
  };
300836
- XamMultiScaleImage.prototype.ba = function (a, b, c, d) {
300941
+ XamMultiScaleImage.prototype.a8 = function (a, b, c, d) {
300837
300942
  for (var e = 0; e < this.ay.count; ++e) {
300838
300943
  if (this.ay._inner[e].c == a && this.ay._inner[e].d == b && this.ay._inner[e].e == c && this.ay._inner[e].f == d) {
300839
300944
  return e;
@@ -300841,37 +300946,37 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300841
300946
  }
300842
300947
  return -1;
300843
300948
  };
300844
- XamMultiScaleImage.prototype.ca = function (a) {
300949
+ XamMultiScaleImage.prototype.b6 = function (a) {
300845
300950
  var _this = this;
300846
300951
  this.aw = false;
300847
300952
  this.as = false;
300848
300953
  var b = this.at;
300849
- if (this.ao == null || !this.an.f() || this.cr.width == 0 || this.cr.height == 0) {
300954
+ if (this.ao == null || !this.an.f() || this.cn.width == 0 || this.cn.height == 0) {
300850
300955
  return;
300851
300956
  }
300852
- var c = truncate(Math.ceil(this.cr.width / this.ao.r));
300957
+ var c = truncate(Math.ceil(this.cn.width / this.ao.r));
300853
300958
  var d = truncate(Math.max(1, Math.floor(-logBase(this.a2 / c, 2))));
300854
- if (d >= this.bd - 8) {
300855
- d = (this.bd - 8) - 1;
300959
+ if (d >= this.bb - 8) {
300960
+ d = (this.bb - 8) - 1;
300856
300961
  }
300857
300962
  var e = truncate(Math.round(Math.pow(2, d)));
300858
300963
  var f = this.a2;
300859
- var g = this.cr.height * f / this.cr.width;
300964
+ var g = this.cn.height * f / this.cn.width;
300860
300965
  var h = this.ao.v / Math.pow(2, d);
300861
300966
  var i = this.ao.u / Math.pow(2, d);
300862
- var j = truncate(Math.floor((this.co.x * this.ao.v) / h));
300863
- var k = truncate(Math.ceil(((this.co.x + f) * this.ao.v) / h));
300864
- var l = truncate(Math.floor((this.co.y * this.ao.u) / i));
300865
- var m = truncate(Math.ceil(((this.co.y + g) * this.ao.v) / i));
300967
+ var j = truncate(Math.floor((this.ck.x * this.ao.v) / h));
300968
+ var k = truncate(Math.ceil(((this.ck.x + f) * this.ao.v) / h));
300969
+ var l = truncate(Math.floor((this.ck.y * this.ao.u) / i));
300970
+ var m = truncate(Math.ceil(((this.ck.y + g) * this.ao.v) / i));
300866
300971
  if (!b) {
300867
300972
  j = Math.max(j, 0);
300868
300973
  k = Math.min(k, e);
300869
300974
  }
300870
300975
  l = Math.max(l, 0);
300871
300976
  m = Math.min(m, e);
300872
- var n = ((j * h) - (this.co.x * this.ao.v)) / h;
300873
- var o = ((l * i) - (this.co.y * this.ao.u)) / i;
300874
- var p = (f * this.ao.v / h) * (this.ao.r / this.cr.width);
300977
+ var n = ((j * h) - (this.ck.x * this.ao.v)) / h;
300978
+ var o = ((l * i) - (this.ck.y * this.ao.u)) / i;
300979
+ var p = (f * this.ao.v / h) * (this.ao.r / this.cn.width);
300875
300980
  var q = new List$1(Tile.$, 0);
300876
300981
  var r;
300877
300982
  var s;
@@ -300885,7 +300990,7 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300885
300990
  s = (s - e);
300886
300991
  }
300887
300992
  var _loop_2 = function (u) {
300888
- var v = this_2.ba(r, s, u, d);
300993
+ var v = this_2.a8(r, s, u, d);
300889
300994
  if (v >= 0) {
300890
300995
  q.add(this_2.ay._inner[v]);
300891
300996
  this_2.ay.removeAt(v);
@@ -300907,7 +301012,7 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300907
301012
  }
300908
301013
  }
300909
301014
  this.ap.f = true;
300910
- this.cf();
301015
+ this.cb();
300911
301016
  this.ay = q;
300912
301017
  var _loop_3 = function (w) {
300913
301018
  if (this_3.ay._inner[w].i == null) {
@@ -300967,20 +301072,20 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300967
301072
  this.ap.f = false;
300968
301073
  this.an.aj();
300969
301074
  };
300970
- XamMultiScaleImage.prototype.b9 = function () {
300971
- if (this.ao == null || !this.an.f() || this.cr.width == 0 || this.cr.height == 0) {
301075
+ XamMultiScaleImage.prototype.b5 = function () {
301076
+ if (this.ao == null || !this.an.f() || this.cn.width == 0 || this.cn.height == 0) {
300972
301077
  return;
300973
301078
  }
300974
301079
  if (this.aw) {
300975
301080
  return;
300976
301081
  }
300977
301082
  this.aw = true;
300978
- this.an.s(runOn(this, this.ca));
301083
+ this.an.s(runOn(this, this.b6));
300979
301084
  };
300980
- XamMultiScaleImage.prototype.cf = function () {
301085
+ XamMultiScaleImage.prototype.cb = function () {
300981
301086
  for (var a = 0; a < this.ay.count; ++a) {
300982
301087
  this.an.r(this.ay._inner[a]);
300983
- this.br(this.ay._inner[a]);
301088
+ this.bp(this.ay._inner[a]);
300984
301089
  if (this.ay._inner[a].i != null) {
300985
301090
  this.ap.n(this.ay._inner[a].i);
300986
301091
  this.ay._inner[a].i.ac = null;
@@ -300988,13 +301093,13 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
300988
301093
  }
300989
301094
  }
300990
301095
  };
300991
- XamMultiScaleImage.prototype.b8 = function () {
301096
+ XamMultiScaleImage.prototype.b4 = function () {
300992
301097
  this.ar.i();
300993
301098
  };
300994
301099
  XamMultiScaleImage.prototype.am = function (a) {
300995
301100
  return this.ar.item(a);
300996
301101
  };
300997
- XamMultiScaleImage.prototype.bq = function (a, b) {
301102
+ XamMultiScaleImage.prototype.bo = function (a, b) {
300998
301103
  this.ar.item(a, b);
300999
301104
  };
301000
301105
  Object.defineProperty(XamMultiScaleImage.prototype, "ar", {
@@ -301010,7 +301115,7 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
301010
301115
  XamMultiScaleImage.prototype.au = function () {
301011
301116
  return this.az.count != 0;
301012
301117
  };
301013
- XamMultiScaleImage.prototype.bv = function () {
301118
+ XamMultiScaleImage.prototype.bt = function () {
301014
301119
  var a = true;
301015
301120
  if (this.au()) {
301016
301121
  a = false;
@@ -301025,17 +301130,17 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
301025
301130
  }
301026
301131
  this.as = a;
301027
301132
  };
301028
- XamMultiScaleImage.prototype.ce = function (a) {
301133
+ XamMultiScaleImage.prototype.ca = function (a) {
301029
301134
  if (a.h != null) {
301030
301135
  a.b = dateNow();
301031
301136
  this.az.add(a);
301032
301137
  this.an.ap();
301033
301138
  }
301034
301139
  else {
301035
- this.bv();
301140
+ this.bt();
301036
301141
  }
301037
301142
  };
301038
- XamMultiScaleImage.prototype.br = function (a) {
301143
+ XamMultiScaleImage.prototype.bp = function (a) {
301039
301144
  if (a.h != null) {
301040
301145
  this.ap.n(a.h);
301041
301146
  a.h.ac = null;
@@ -301051,7 +301156,7 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
301051
301156
  }
301052
301157
  }
301053
301158
  };
301054
- XamMultiScaleImage.prototype.bt = function () {
301159
+ XamMultiScaleImage.prototype.br = function () {
301055
301160
  var a = dateNow();
301056
301161
  var b = 0.5;
301057
301162
  for (var c = 0; c < this.az.count;) {
@@ -301075,49 +301180,39 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
301075
301180
  this.an.ar();
301076
301181
  }
301077
301182
  };
301078
- XamMultiScaleImage.prototype.b2 = function () {
301183
+ XamMultiScaleImage.prototype.by = function () {
301079
301184
  this.a2 = this.a5;
301080
- this.co = this.cq;
301081
- this.b9();
301185
+ this.ck = this.cm;
301186
+ this.b5();
301082
301187
  };
301083
- XamMultiScaleImage.prototype.b4 = function (a) {
301188
+ XamMultiScaleImage.prototype.b0 = function (a) {
301084
301189
  var b = a;
301085
301190
  this.ag.m(b);
301086
301191
  this.an.ae(a);
301087
301192
  };
301088
- XamMultiScaleImage.prototype.b5 = function (a) {
301193
+ XamMultiScaleImage.prototype.b1 = function (a) {
301089
301194
  this.an.ag(a);
301090
301195
  };
301091
- XamMultiScaleImage.prototype.b6 = function (a) {
301196
+ XamMultiScaleImage.prototype.b2 = function (a) {
301092
301197
  this.an.ah(a);
301093
301198
  };
301094
- XamMultiScaleImage.prototype.b7 = function (a) {
301199
+ XamMultiScaleImage.prototype.b3 = function (a) {
301095
301200
  this.an.ai(a);
301096
301201
  };
301097
- XamMultiScaleImage.prototype.b0 = function () {
301202
+ XamMultiScaleImage.prototype.bw = function () {
301098
301203
  if (this.imagesChanged != null) {
301099
301204
  this.imagesChanged(this, new EventArgs());
301100
301205
  }
301101
301206
  };
301102
- XamMultiScaleImage.prototype.bs = function () {
301207
+ XamMultiScaleImage.prototype.bq = function () {
301103
301208
  this.aw = false;
301104
301209
  };
301105
- XamMultiScaleImage.prototype.bz = function (a) {
301210
+ XamMultiScaleImage.prototype.bv = function (a) {
301106
301211
  if (this.downloadingImage != null) {
301107
301212
  this.downloadingImage(this, a);
301108
301213
  }
301109
301214
  };
301110
- XamMultiScaleImage.prototype.bx = function (a) {
301111
- if (this.beforeDownloadStart != null) {
301112
- this.beforeDownloadStart(this, a);
301113
- }
301114
- };
301115
- XamMultiScaleImage.prototype.bw = function (a) {
301116
- if (this.afterDownloadStart != null) {
301117
- this.afterDownloadStart(this, a);
301118
- }
301119
- };
301120
- XamMultiScaleImage.prototype.by = function (a) {
301215
+ XamMultiScaleImage.prototype.bu = function (a) {
301121
301216
  if (this.cancellingImage != null) {
301122
301217
  this.cancellingImage(this, a);
301123
301218
  }
@@ -301129,15 +301224,15 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
301129
301224
  enumerable: false,
301130
301225
  configurable: true
301131
301226
  });
301132
- XamMultiScaleImage.prototype.b3 = function (a) {
301227
+ XamMultiScaleImage.prototype.bz = function (a) {
301133
301228
  this.a1 = a;
301134
301229
  };
301135
- Object.defineProperty(XamMultiScaleImage.prototype, "bb", {
301230
+ Object.defineProperty(XamMultiScaleImage.prototype, "a9", {
301136
301231
  get: function () {
301137
301232
  return this.ar.h;
301138
301233
  },
301139
301234
  set: function (a) {
301140
- var b = a != this.bb;
301235
+ var b = a != this.a9;
301141
301236
  if (b) {
301142
301237
  this.ar = new LRUCache$2(Tile.$, WriteableBitmap.$, 1, a, new TilePositionComparer());
301143
301238
  }
@@ -301146,7 +301241,7 @@ var XamMultiScaleImage = /** @class */ /*@__PURE__*/ (function (_super) {
301146
301241
  configurable: true
301147
301242
  });
301148
301243
  XamMultiScaleImage.$t = markType(XamMultiScaleImage, 'XamMultiScaleImage', Control.$, [INotifyPropertyChanged_$type]);
301149
- XamMultiScaleImage.$$p = markDep(DependencyProperty, PropertyMetadata, XamMultiScaleImage, 'b1', ['IsHorizontalTileWrappingEnabled:av:cg', [0, false], 'Referer:bh:ch', [2, null], 'Source:ao:ci', [XamMultiScaleTileSource.$, null], 'SpringsEasingFunction:aj:cj', [IEasingFunction_$type, null], 'UseSprings:ax:cl', [0, false], 'UserAgent:bl:ck', [2, null], 'ViewportOrigin:cq:cm', [Point_$type, { $type: Point_$type, x: 0, y: 0 }], 'ViewportWidth:a5:cn', [1, 1]]);
301244
+ XamMultiScaleImage.$$p = markDep(DependencyProperty, PropertyMetadata, XamMultiScaleImage, 'bx', ['IsHorizontalTileWrappingEnabled:av:cc', [0, false], 'Referer:bf:cd', [2, null], 'Source:ao:ce', [XamMultiScaleTileSource.$, null], 'SpringsEasingFunction:aj:cf', [IEasingFunction_$type, null], 'UseSprings:ax:ch', [0, false], 'UserAgent:bj:cg', [2, null], 'ViewportOrigin:cm:ci', [Point_$type, { $type: Point_$type, x: 0, y: 0 }], 'ViewportWidth:a5:cj', [1, 1]]);
301150
301245
  return XamMultiScaleImage;
301151
301246
  }(Control));
301152
301247
 
@@ -333345,4 +333440,4 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
333345
333440
  * Generated bundle index. Do not edit.
333346
333441
  */
333347
333442
 
333348
- export { APIFactory, AbsolutePanelBridge, AbsoluteVolumeOscillatorIndicatorDescription, AbsoluteVolumeOscillatorIndicatorDescriptionMetadata, AbsoluteVolumeOscillatorIndicatorDescriptionModule, AbstractEnumerable, AbstractEnumerator, AccumulationDistributionIndicatorDescription, AccumulationDistributionIndicatorDescriptionMetadata, AccumulationDistributionIndicatorDescriptionModule, Activator, AggregateException, AggregatedDataProvider, AggregatedDataProviderLayerInfo, AggregatedDataProviderLayerMap, AggregatedDataProviderTargetDataSourceNotifier, AggregatedDataProviderTopLayer, AlignLinearGraphLabelEventArgsDescription, AlignLinearGraphLabelEventArgsDescriptionMetadata, AlignRadialGaugeLabelEventArgsDescription, AlignRadialGaugeLabelEventArgsDescriptionMetadata, AnchoredCategorySeriesDescription, AnchoredCategorySeriesDescriptionMetadata, AnchoredRadialSeriesDescription, AnchoredRadialSeriesDescriptionMetadata, AngleSimplifier, AngularCodeBehindCodeGeneratingComponentRendererCodeEmitter, AngularRenderer, AngularTemplateCodeGeneratingComponentRendererCodeEmitter, AngularWrapper, AnimationBrowserTickProvider, AnimationIdleEventArgsDescription, AnimationIdleEventArgsDescriptionMetadata, 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, AsyncVirtualDataTaskCompletionSource, AverageDirectionalIndexIndicatorDescription, AverageDirectionalIndexIndicatorDescriptionMetadata, AverageDirectionalIndexIndicatorDescriptionModule, AverageSummaryCalculator, AverageTrueRangeIndicatorDescription, AverageTrueRangeIndicatorDescriptionMetadata, AverageTrueRangeIndicatorDescriptionModule, AxisAnnotationDescription, AxisAnnotationDescriptionMetadata, AxisDescription, AxisDescriptionMetadata, AxisRangeChangedEventArgsDescription, AxisRangeChangedEventArgsDescriptionMetadata, AzureMapsMapImageryDescription, AzureMapsMapImageryDescriptionMetadata, AzureMapsMapImageryDescriptionModule, AzureMapsTileSource, BarFragmentDescription, BarFragmentDescriptionMetadata, BarFragmentDescriptionModule, BarSeriesDescription, BarSeriesDescriptionMetadata, BarSeriesDescriptionModule, Base, BaseControlTheme, BaseControlTheme_$type, BaseDOMEventProxy, BaseDataSource, BaseDataSourceDescription, BaseDataSourceDescriptionMetadata, BaseError, BaseGenericDataSource, BaseGenericDataSourceDescription, BaseGenericDataSourceDescriptionMetadata, BaseTransactionService, BaseVirtualDataProvider, 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, BoxCollisionGeometry, BoxesCollisionGeometry, BreakEvenDataInfo, BreakEvenDataRule, BreakEvenItem, BreakEvenPoints, 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, CSSColorUtil, CalculatedColumnDescription, CalculatedColumnDescriptionMetadata, Calendar, CalendarDateDescription, CalendarDateDescriptionMetadata, CalendarDescription, CalendarDescriptionMetadata, CalendarDescriptionModule, CalendarFormatOptionsDescription, CalendarFormatOptionsDescriptionMetadata, CalendarWeekRule_$type, CalloutAnnotationDescription, CalloutAnnotationDescriptionMetadata, CalloutCollisionMode, CalloutCollisionMode_$type, 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, CaptureImageFormat, CaptureImageFormat_$type, CaptureImageSettings, CaptureImageSettingsDescription, CaptureImageSettingsDescriptionMetadata, CategoryAngleAxisDescription, CategoryAngleAxisDescriptionMetadata, CategoryAngleAxisDescriptionModule, CategoryAxisBaseDescription, CategoryAxisBaseDescriptionMetadata, CategoryChartCoreDescriptionModule, CategoryChartDescription, CategoryChartDescriptionMetadata, CategoryChartDescriptionModule, CategoryChartToolbarDescriptionModule, 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, ChartGroupDescriptionDescription, ChartGroupDescriptionDescriptionMetadata, ChartGroupDescriptionDescriptionModule, ChartMouseEventArgsDescription, ChartMouseEventArgsDescriptionMetadata, ChartResizeIdleEventArgsDescription, ChartResizeIdleEventArgsDescriptionMetadata, ChartSelectionDescription, ChartSelectionDescriptionMetadata, ChartSelectionDescriptionModule, ChartSeriesEventArgsDescription, ChartSeriesEventArgsDescriptionMetadata, ChartSortDescriptionDescription, ChartSortDescriptionDescriptionMetadata, ChartSortDescriptionDescriptionModule, ChartSummaryDescriptionDescription, ChartSummaryDescriptionDescriptionMetadata, ChartSummaryDescriptionDescriptionModule, CheckboxChangeEventArgsDescription, CheckboxChangeEventArgsDescriptionMetadata, CheckboxDescription, CheckboxDescriptionMetadata, CheckboxDescriptionModule, CheckboxListDescription, CheckboxListDescriptionMetadata, CheckboxListDescriptionModule, CheckboxListIndexTypeChangedEventArgsDescription, CheckboxListIndexTypeChangedEventArgsDescriptionMetadata, CheckboxListKeysClearedEventArgsDescription, CheckboxListKeysClearedEventArgsDescriptionMetadata, CheckedChangedEventArgsDescription, CheckedChangedEventArgsDescriptionMetadata, ChildContentDescriptionModule, ChildContentExtendedDescriptionModule, CircleCollisionGeometry, Clipboard, Clipper, CodeGeneratingCodeWriter, CodeGeneratingComponentRenderer, CodeGeneratingComponentRendererCodeEmitter, CodeGeneratingComponentRendererDataEmitter, CodeGeneratingComponentRendererDataEmitterItemType, CodeGeneratingComponentRendererDataEmitterPropertyType, CodeGeneratingComponentRendererHandlerEmitter, CodeGeneratingComponentRendererModuleEmitter, CodeGeneratingComponentRendererTemplateEmitter, 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, CollisionGeometry, CollisionGeometryType, CollisionGeometryType_$type, CollisionRect, Color, ColorCollectionUtil, ColorData, ColorEditorDescription, ColorEditorDescriptionMetadata, ColorEditorDescriptionModule, ColorEditorGotFocusEventArgsDescription, ColorEditorGotFocusEventArgsDescriptionMetadata, ColorEditorLostFocusEventArgsDescription, ColorEditorLostFocusEventArgsDescriptionMetadata, ColorEditorPanelClosedEventArgsDescription, ColorEditorPanelClosedEventArgsDescriptionMetadata, ColorEditorPanelDescription, ColorEditorPanelDescriptionMetadata, ColorEditorPanelDescriptionModule, ColorEditorPanelSelectedValueChangedEventArgsDescription, ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata, ColorScaleDescription, ColorScaleDescriptionMetadata, ColorUtil, ColumnChooserDescription, ColumnChooserDescriptionMetadata, ColumnChooserDescriptionModule, ColumnComparisonFilterConditionDescription, ColumnComparisonFilterConditionDescriptionMetadata, ColumnCustomFilterConditionDescription, ColumnCustomFilterConditionDescriptionMetadata, ColumnDependenciesDescriptionModule, 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, ComboEditorDescription, ComboEditorDescriptionMetadata, ComboEditorDescriptionModule, ComboEditorGotFocusEventArgsDescription, ComboEditorGotFocusEventArgsDescriptionMetadata, ComboEditorLostFocusEventArgsDescription, ComboEditorLostFocusEventArgsDescriptionMetadata, ComboEditorTextChangedEventArgsDescription, ComboEditorTextChangedEventArgsDescriptionMetadata, ComboEditorValueChangedEventArgsDescription, ComboEditorValueChangedEventArgsDescriptionMetadata, CommodityChannelIndexIndicatorDescription, CommodityChannelIndexIndicatorDescriptionMetadata, CommodityChannelIndexIndicatorDescriptionModule, CompareInfo, CompareUtil, Comparer$1, CompletedSinkImpl, ComponentRenderer, ComponentRendererAdapter, ComponentRendererMethodHelper, ComponentRendererMethodHelperArgumentBuilder, ComponentRendererMethodHelperBuilder, ComponentRendererMethodHelperReturnBuilder, ComponentRendererReferenceResolverEventArgs, ComponentRendererSerializationHelper, ComponentSizeHelpers, Compute, ContainerState, ContainsPropertyDataSourceFilterExpressionVisitor, ContentChildCollection, ContentControl, ContourValueResolverDescription, ContourValueResolverDescriptionMetadata, Control, ControlDisplayDensity, ControlDisplayDensity_$type, Convert, ConvertUtil, CoreGeometryUtil, CornerRadius, CountSummaryCalculator, CrosshairLayerDescription, CrosshairLayerDescriptionMetadata, CrosshairLayerDescriptionModule, CssColorPropertyAccessor, CssCornerRadiusPropertyAccessor, CssCursorPropertyAccessor, CssFloatPropertyAccessor, CssGradientUtil, CssHelper, CssHitTestVisiblePropertyAccessor, CssLengthArrayPropertyAccessor, CssLengthPropertyAccessor, CssPixelsPropertyAccessor, CssThicknessPropertyAccessor, CssTransformPropertyAccessor, CssVisibilityPropertyAccessor, CultureInfo, CustomContourValueResolverDescription, CustomContourValueResolverDescriptionMetadata, CustomContourValueResolverDescriptionModule, CustomContourValueResolverEventArgsDescription, CustomContourValueResolverEventArgsDescriptionMetadata, CustomIndicatorDescription, CustomIndicatorDescriptionMetadata, CustomIndicatorDescriptionModule, CustomLocalDataSourceDescription, CustomLocalDataSourceDescriptionMetadata, CustomLocalDataSourceDescriptionModule, CustomMapImageryDescription, CustomMapImageryDescriptionMetadata, CustomMapImageryDescriptionModule, CustomMapTileSource, CustomPaletteBrushScaleDescription, CustomPaletteBrushScaleDescriptionMetadata, CustomPaletteBrushScaleDescriptionModule, CustomPaletteColorScaleDescription, CustomPaletteColorScaleDescriptionMetadata, CustomPaletteColorScaleDescriptionModule, DOMEventProxy, DOMExecutionContext, DOMWindowBridge, DTDObjectModel, DVContainer, DVInteractivityDescriptionModule, DVSR, DashboardTileChangingContentEventArgsDescription, DashboardTileChangingContentEventArgsDescriptionMetadata, DashboardTileCustomizationDescription, DashboardTileCustomizationDescriptionMetadata, DashboardTileCustomizationDescriptionModule, DashboardTileDescription, DashboardTileDescriptionMetadata, DashboardTileDescriptionModule, DashboardTileFilterStringErrorsParsingEventArgsDescription, DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata, DashboardTileGroupDescriptionDescription, DashboardTileGroupDescriptionDescriptionMetadata, DashboardTileGroupDescriptionDescriptionModule, DashboardTileSortDescriptionDescription, DashboardTileSortDescriptionDescriptionMetadata, DashboardTileSortDescriptionDescriptionModule, DashboardTileSummaryDescriptionDescription, DashboardTileSummaryDescriptionDescriptionMetadata, DashboardTileSummaryDescriptionDescriptionModule, DataAbbreviationMode, DataAbbreviationMode_$type, DataAdapterRunContextRecursionType_$type, DataAnnotationAxisLayerDescription, DataAnnotationAxisLayerDescriptionMetadata, DataAnnotationBandLayerDescription, DataAnnotationBandLayerDescriptionMetadata, DataAnnotationBandLayerDescriptionModule, DataAnnotationInfoDescription, DataAnnotationInfoDescriptionMetadata, DataAnnotationItemDescription, DataAnnotationItemDescriptionMetadata, DataAnnotationLineLayerDescription, DataAnnotationLineLayerDescriptionMetadata, DataAnnotationLineLayerDescriptionModule, DataAnnotationPointLayerDescription, DataAnnotationPointLayerDescriptionMetadata, DataAnnotationRangeLayerDescription, DataAnnotationRangeLayerDescriptionMetadata, DataAnnotationRectLayerDescription, DataAnnotationRectLayerDescriptionMetadata, DataAnnotationRectLayerDescriptionModule, DataAnnotationShapeLayerDescription, DataAnnotationShapeLayerDescriptionMetadata, DataAnnotationSliceLayerDescription, DataAnnotationSliceLayerDescriptionMetadata, DataAnnotationSliceLayerDescriptionModule, DataAnnotationStripLayerDescription, DataAnnotationStripLayerDescriptionMetadata, DataAnnotationStripLayerDescriptionModule, DataAnnotationStyleEventArgsDescription, DataAnnotationStyleEventArgsDescriptionMetadata, DataBindingEventArgsDescription, DataBindingEventArgsDescriptionMetadata, DataChartAnnotationDescriptionModule, DataChartCategoryCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartCategoryTrendLineDescriptionModule, DataChartCoreDescriptionModule, DataChartDashboardTileDescriptionModule, DataChartDefaultTooltipsDescriptionMetadata, DataChartDefaultTooltipsExtendedDescriptionMetadata, DataChartDescription, DataChartDescriptionMetadata, DataChartExtendedAxesDescriptionModule, DataChartFinancialCoreDescriptionModule, DataChartFinancialDescriptionModule, DataChartFinancialIndicatorsDescriptionModule, DataChartFinancialOverlaysDescriptionModule, DataChartInteractivityDescriptionModule, DataChartMouseButtonEventArgsDescription, DataChartMouseButtonEventArgsDescriptionMetadata, DataChartPolarCoreDescriptionModule, DataChartPolarDescriptionModule, DataChartRadialCoreDescriptionModule, DataChartRadialDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartShapeCoreDescriptionModule, DataChartShapeDescriptionModule, DataChartStackedDescriptionModule, DataChartToolbarDescriptionModule, DataChartToolbarIconsDescriptionModule, DataChartVerticalCategoryCoreDescriptionModule, DataChartVerticalCategoryDescriptionModule, DataChartVisualDataDescriptionModule, DataContext, DataContextDescription, DataContextDescriptionMetadata, DataFormats, DataGridAllColumnsDescriptionModule, DataGridCellEventArgsDescription, DataGridCellEventArgsDescriptionMetadata, DataGridColumnDescription, DataGridColumnDescriptionMetadata, DataGridComparisonOperatorSelectorDescription, DataGridComparisonOperatorSelectorDescriptionMetadata, DataGridCoreDescriptionModule, DataGridDescription, DataGridDescriptionMetadata, DataGridDescriptionModule, DataGridExpansionIndicatorDescription, DataGridExpansionIndicatorDescriptionMetadata, DataGridFilterDialogDescription, DataGridFilterDialogDescriptionMetadata, DataGridPagerDescription, DataGridPagerDescriptionMetadata, DataGridPagerDescriptionModule, DataGridSortIndicatorDescription, DataGridSortIndicatorDescriptionMetadata, DataGridSummaryResultDescription, DataGridSummaryResultDescriptionMetadata, DataGridToolbarDescription, DataGridToolbarDescriptionMetadata, DataGridToolbarDescriptionModule, DataLegendDescription, DataLegendDescriptionMetadata, DataLegendDescriptionModule, DataLegendHeaderDateMode, DataLegendHeaderDateMode_$type, DataLegendHeaderTimeMode, DataLegendHeaderTimeMode_$type, DataLegendLabelMode, DataLegendLabelMode_$type, DataLegendLayoutMode, DataLegendLayoutMode_$type, DataLegendSeriesContext, DataLegendSeriesContextDescription, DataLegendSeriesContextDescriptionMetadata, DataLegendSeriesFamily, DataLegendSeriesFamily_$type, DataLegendSeriesGroupInfoDescription, DataLegendSeriesGroupInfoDescriptionMetadata, 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, DataPieBaseChartDescription, DataPieBaseChartDescriptionMetadata, DataPieChartCoreDescriptionModule, DataPieChartDescription, DataPieChartDescriptionMetadata, DataPieChartDescriptionModule, DataPieChartToolbarDescriptionModule, DataSeries, DataSeriesAdapter, DataSeriesAdapterCachedProviderType_$type, DataSeriesAdapterImplementation, DataSeriesAdapterPropertyInfo, DataSeriesAdapterProviderInfo, DataSeriesAdapterRemovingDuplicatesEventArgs, DataSeriesAdapterRuleCollection, DataSeriesAdapterRunContext, DataSeriesAdapterRunEventArgs, DataSeriesAdapterUpdateNotifier, DataSeriesAxisType, DataSeriesAxisType_$type, DataSeriesCollection, DataSeriesDataProviderAnalyzer, DataSeriesIntent, DataSeriesIntent_$type, DataSeriesMarker, DataSeriesMarker_$type, DataSeriesMemberPathHint, DataSeriesPropertyType, DataSeriesPropertyType_$type, DataSeriesToDescriptionCustomization, DataSeriesType, DataSeriesType_$type, DataSourceAggregatedResult, DataSourceAggregatedResultDescription, DataSourceAggregatedResultDescriptionMetadata, DataSourceBatchCompletedEventArgs, DataSourceBatchStartedEventArgs, DataSourceDataCommittedEventArgs, DataSourceDataProviderSchemaChangedEventArgs, DataSourceDataProviderSchemaChangedEventArgsDescription, DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata, DataSourceExecutionContext, DataSourceGroupDescription, DataSourceGroupDescriptionCollection, DataSourceGroupDescriptionDescription, DataSourceGroupDescriptionDescriptionMetadata, DataSourceGroupDescriptionDescriptionModule, DataSourceLocalDataProvider, DataSourcePageRequestPriority, DataSourcePageRequestPriority_$type, DataSourcePropertiesComparer, DataSourcePropertiesRequestedChangedEventArgs, DataSourcePropertiesRequestedChangedEventArgsDescription, DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata, DataSourceRootSummariesChangedEventArgs, DataSourceRootSummariesChangedEventArgsDescription, DataSourceRootSummariesChangedEventArgsDescriptionMetadata, DataSourceRowExpansionChangedEventArgs, DataSourceRowExpansionChangedEventArgsDescription, DataSourceRowExpansionChangedEventArgsDescriptionMetadata, DataSourceRowType, DataSourceRowType_$type, DataSourceSchemaChangedEventArgs, DataSourceSchemaChangedEventArgsDescription, DataSourceSchemaChangedEventArgsDescriptionMetadata, DataSourceSchemaPropertyType, DataSourceSchemaPropertyType_$type, DataSourceSectionHeaderDisplayMode, DataSourceSectionHeaderDisplayMode_$type, DataSourceSortDescription, DataSourceSortDescriptionCollection, DataSourceSortDescriptionDescription, DataSourceSortDescriptionDescriptionMetadata, DataSourceSortDescriptionDescriptionModule, DataSourceSpecialRow, DataSourceSpecialRowDescription, DataSourceSpecialRowDescriptionMetadata, DataSourceSummaryDescription, DataSourceSummaryDescriptionCollection, DataSourceSummaryDescriptionDescription, DataSourceSummaryDescriptionDescriptionMetadata, DataSourceSummaryDescriptionDescriptionModule, DataSourceSummaryOperand, DataSourceSummaryOperand_$type, 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, DatePartDeltasDescription, DatePartDeltasDescriptionMetadata, 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, DefaultRandomnessGenerator, DefaultRandomnessSource, DefaultSectionInformation, DefaultSummaryResult, DefinitionBaseDescription, DefinitionBaseDescriptionMetadata, DelayManager, DelayManagerCallbackSettings, Delegate_$type, DependencyObject, DependencyObjectNotifier, DependencyPropertiesCollection, DependencyProperty, DependencyPropertyChangedEventArgs, Description, DescriptionJsonValidator, DescriptionPath, DescriptionPathEvaluator, DescriptionPathEvaluatorResult, DescriptionPathIndexer, DescriptionPathOperatorType, DescriptionPathOperatorType_$type, DescriptionPathParser, DescriptionPathSegment, DescriptionPropertyValue, DescriptionRef, DescriptionRefTargetInfo, 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, DomainChartPlotAreaPointerEventArgsDescription, DomainChartPlotAreaPointerEventArgsDescriptionMetadata, DomainChartSeriesPointerEventArgsDescription, DomainChartSeriesPointerEventArgsDescriptionMetadata, DomainChartToolbarDescriptionModule, DotNetCodeGeneratingComponentRendererDataEmitter, DotNetCodeGeneratingComponentRendererHandlerEmitter, DotNetCodeGeneratingComponentRendererModuleEmitter, DotNetCodeGeneratingComponentRendererTemplateEmitter, 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, Ellipse, EllipseGeometry, EllipseGeometryData, EllipseVisualData, EmbeddedRefDescription, Encoding, EntityHandling, EntityHandling_$type, Enum, EnumBox, 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, FilterCellInfoDescription, FilterCellInfoDescriptionMetadata, FilterDialogRenderCompletedEventArgsDescription, FilterDialogRenderCompletedEventArgsDescriptionMetadata, FilterExpression, FilterExpressionCollection, FilterExpressionConversionVisitor, FilterExpressionDescription, FilterExpressionDescriptionMetadata, FilterExpressionEnvironment, FilterExpressionFunctionType, FilterExpressionFunctionType_$type, FilterExpressionOperatorType, FilterExpressionOperatorType_$type, FilterExpressionParsingHelper, FilterExpressionParsingResult, FilterExpressionVisitor, FilterExpressionWrapperType, FilterExpressionWrapperType_$type, FilterFactory, FilterOperandDescription, FilterOperandDescriptionMetadata, FilterOperandDescriptionModule, FilterRowDefinitionDescription, FilterRowDefinitionDescriptionMetadata, FilterRowDefinitionDescriptionModule, FilterStringErrorsParsingEventArgsDescription, FilterStringErrorsParsingEventArgsDescriptionMetadata, FilterSyntaxBinaryOperatorExpressionSyntax, FilterSyntaxExpressionSyntax, FilterSyntaxIdentifierExpressionSyntax, FilterSyntaxLexer, FilterSyntaxMemberExpressionSyntax, FilterSyntaxMethodCallExpressionSyntax, FilterSyntaxNullExpressionSyntax, FilterSyntaxParenthesisExpressionSyntax, FilterSyntaxParseResult, FilterSyntaxParser, FilterSyntaxPrimitiveValueExpressionSyntax, FilterSyntaxPrintingHelper, FilterSyntaxToken, FilterSyntaxTokenType_$type, FilterSyntaxUnaryOperatorExpressionSyntax, FilterSyntaxVisitor, 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, FlatDataProvider, FlatDataProviderJoinCollisionType, FlatDataProviderJoinCollisionType_$type, FlatDataProviderJoinType, FlatDataProviderJoinType_$type, FlatDataProviderTargetDataSourceNotifier, Flattener, FlattenerSettings, FocusEventArgs, FocusEventArgsDescription, FocusEventArgsDescriptionMetadata, FocusOptionsDescription, FocusOptionsDescriptionMetadata, FontDefaults, FontInfo, FontRegistry, FontUtil, ForceIndexIndicatorDescription, ForceIndexIndicatorDescriptionMetadata, ForceIndexIndicatorDescriptionModule, FormatCellEventArgsDescription, FormatCellEventArgsDescriptionMetadata, 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, FunnelChartSelectedItemsChangedEventArgsDescription, FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata, FunnelDataContextDescription, FunnelDataContextDescriptionMetadata, FunnelSliceClickedEventArgsDescription, FunnelSliceClickedEventArgsDescriptionMetadata, FunnelSliceDataContextDescription, FunnelSliceDataContextDescriptionMetadata, FunnelSliceEventArgsDescription, FunnelSliceEventArgsDescriptionMetadata, GC, GenericDataSourcePage, GenericDataSourceSchemaPropertyType, GenericDataSourceSchemaPropertyType_$type, GenericEnumerable$1, GenericEnumerator$1, GenericInternalVirtualDataProvider, GenericInternalVirtualDataSource, GenericPageResponse, GenericSectionInformation, GenericSummaryResult, GenericVirtualDataProviderWorker, GenericVirtualDataProviderWorkerSettings, GenericVirtualDataSource, GenericVirtualDataSourceDescription, GenericVirtualDataSourceDescriptionMetadata, GenericVirtualDataSourceDescriptionModule, GeographicContourLineSeriesDescription, GeographicContourLineSeriesDescriptionMetadata, GeographicContourLineSeriesDescriptionModule, GeographicHighDensityScatterSeriesDescription, GeographicHighDensityScatterSeriesDescriptionMetadata, GeographicHighDensityScatterSeriesDescriptionModule, GeographicMapCoreDescriptionModule, GeographicMapDashboardTileDescriptionModule, 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, GlobalAnimationState, GotFocusEventArgsDescription, GotFocusEventArgsDescriptionMetadata, GradientDirection, GradientDirection_$type, GradientStop, GradientStopAppearanceData, GridActiveCellChangedEventArgsDescription, GridActiveCellChangedEventArgsDescriptionMetadata, GridAnimationPhaseSettingsDescription, GridAnimationPhaseSettingsDescriptionMetadata, GridAnimationSettingsDescription, GridAnimationSettingsDescriptionMetadata, GridBridge, GridBridgeColumnDefinition, GridBridgeRowDefinition, GridCellEditEndedEventArgsDescription, GridCellEditEndedEventArgsDescriptionMetadata, GridCellEditStartedEventArgsDescription, GridCellEditStartedEventArgsDescriptionMetadata, GridCellEventArgsDescription, GridCellEventArgsDescriptionMetadata, GridCellPositionDescription, GridCellPositionDescriptionMetadata, GridCellPositionDescriptionModule, 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, GridCompoundConditionalStyleDescription, GridCompoundConditionalStyleDescriptionMetadata, GridConditionFilterStringErrorsParsingEventArgsDescription, GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata, GridConditionalStyleDescription, GridConditionalStyleDescriptionMetadata, GridConditionalStyleDescriptionModule, GridConditionalStyleFontInfoDescription, GridConditionalStyleFontInfoDescriptionMetadata, GridConditionalStyleFontInfoDescriptionModule, GridConditionalStylePropertyDescription, GridConditionalStylePropertyDescriptionMetadata, GridConditionalStylePropertyDescriptionModule, 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, HighlightState, HighlightState_$type, HighlightedValueDisplayMode, HighlightedValueDisplayMode_$type, HighlightedValueLabelMode, HighlightedValueLabelMode_$type, HighlightingData, HighlightingInfo, HighlightingInfoComparer, HighlightingInfoDescription, HighlightingInfoDescriptionMetadata, HighlightingManager, HighlightingState, HighlightingState_$type, HoleDimensionsChangedEventArgsDescription, HoleDimensionsChangedEventArgsDescriptionMetadata, HorizontalAlignment, HorizontalAlignment_$type, HorizontalAnchoredCategorySeriesDescription, HorizontalAnchoredCategorySeriesDescriptionMetadata, HorizontalAnchoredCategorySeriesProxyDescriptionModule, HorizontalRangeCategorySeriesDescription, HorizontalRangeCategorySeriesDescriptionMetadata, HorizontalRangeCategorySeriesProxyDescriptionModule, HorizontalStackedSeriesBaseDescription, HorizontalStackedSeriesBaseDescriptionMetadata, HttpRequestUtil, IAcceptsDataSeriesToDescriptionCustomizations_$type, IArrayList_$type, IArray_$type, IChartItemLegend_$type, IChartLegend_$type, IChartScaleLegend_$type, ICodeGenerationRendererTemplate_$type, ICollection$1_$type, ICollection_$type, ICommandAvailabilityListener_$type, ICommandStateChangedListener_$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, IDataSourceClonableDataProvider_$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, IFilterExpressionEnvironment_$type, IFilterExpression_$type, IFormatProvider_$type, IFormattable_$type, IFunctionFilterExpression_$type, IGetItemAtIndex_$type, IGrouping$2_$type, IHashPool$2_$type, IHighlightingManager_$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, INativeUIAbsolutePanelBridge_$type, INativeUIButtonGroupBridge_$type, INativeUICheckboxListBridge_$type, INativeUIColumnBridge_$type, INativeUIContainerBridge_$type, INativeUIContentBridge_$type, INativeUIElementBridge_$type, INativeUIElementFactory_$type, INativeUIGridBridge_$type, INativeUIInputBridge_$type, INativeUIPopupBridge_$type, INativeUIWindowBridge_$type, INotifyCollectionChanged_$type, INotifyPropertyChanged_$type, IOPath, IOnDemandRender_$type, IOperationFilterExpression_$type, IOrderedEnumerable$1_$type, IOverviewPlusDetailControl_$type, IOverviewPlusDetailPane_$type, IPageCandidatesSink_$type, IPermission_$type, IPlatformAPIHelperImpl_$type, IPool$1_$type, IPropertyReferenceFilterExpression_$type, IQueryProvider_$type, IQueryable$1_$type, IQueryable_$type, IRandomnessGenerator_$type, IRandomnessSource_$type, IRenderer_$type, IScaleLegendSeries_$type, ISchedulableRender_$type, IScrollerKeyboardListener_$type, IScrollerView_$type, ISectionInformation_$type, ISmartPlaceable_$type, ISummaryResult_$type, ISupportsAnimation_$type, ISupportsDataChangeNotifications_$type, ISupportsExpansionChangeNotifications_$type, ISupportsInput_$type, ITickProvider_$type, ITileGenerator_$type, ITileWorkCompletedSink_$type, IToolbarContextAccessor_$type, IToolbarTarget_$type, ITypeDescriptionPropertyTransforms_$type, IUnknownValuePlotting_$type, IVisualData_$type, IXmlLineInfo_$type, IXmlNamespaceResolver_$type, IZoomSlider_$type, IconDescription, IconDescriptionMetadata, IconDescriptionModule, IgCollection, IgEvent, IgcButtonBridge, IgcCheckboxBridge, IgcDropdownBridge, IgcIconButtonBridge, IgcInputBridge, IgcSliderBridge, IgxAsyncCompletedEventArgs, IgxBaseGenericDataSource, IgxCancelEventArgs, IgxCancellingMultiScaleImageEventArgs, IgxCaptureImageSettings, IgxChildContentComponent, IgxChildContentDynamicModule, IgxChildContentModule, IgxComponentRendererContainerComponent, IgxComponentRendererContainerDynamicModule, IgxComponentRendererContainerModule, IgxContentChildCollection, IgxDVInteractivityDynamicModule, IgxDVInteractivityModule, IgxDataContext, IgxDataLegendSeriesContext, IgxDataLegendSeriesValueInfo, IgxDataLegendSummaryColumn, IgxDataSeriesCollection, IgxDataSourceDataProviderSchemaChangedEventArgs, IgxDataSourceGroupDescription, IgxDataSourceGroupDescriptionCollection, IgxDataSourceGroupDescriptionDynamicModule, IgxDataSourceGroupDescriptionModule, IgxDataSourcePropertiesRequestedChangedEventArgs, IgxDataSourceRootSummariesChangedEventArgs, IgxDataSourceRowExpansionChangedEventArgs, IgxDataSourceSchemaChangedEventArgs, IgxDataSourceSortDescription, IgxDataSourceSortDescriptionCollection, IgxDataSourceSortDescriptionDynamicModule, IgxDataSourceSortDescriptionModule, IgxDataSourceSummaryDescription, IgxDataSourceSummaryDescriptionCollection, IgxDataSourceSummaryDescriptionDynamicModule, IgxDataSourceSummaryDescriptionModule, 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, IgxFocusEventArgs, IgxFormatSpecifier, IgxFormatSpecifierCollection, IgxFormatSpecifierDynamicModule, IgxFormatSpecifierModule, IgxGenericVirtualDataSource, IgxGenericVirtualDataSourceDynamicModule, IgxGenericVirtualDataSourceModule, IgxGetTileImageUriArgs, IgxHeatTileGenerator, IgxHeatTileGeneratorDynamicModule, IgxHeatTileGeneratorModule, IgxHighlightingInfo, IgxImageCapturedEventArgs, IgxKeyEventArgs, IgxLocalDataSourceDynamicModule, IgxLocalDataSourceModule, IgxNumberFormatSpecifier, IgxNumberFormatSpecifierDynamicModule, IgxNumberFormatSpecifierModule, IgxObjectCollection, IgxOnClosedEventArgs, IgxOnPopupEventArgs, IgxPageRequestedEventArgs, IgxPopupComponent, IgxPopupDynamicModule, IgxPopupMeasuringContentSizeEventArgs, IgxPopupModule, IgxPropertyUpdatedEventArgs, IgxProvideCalculatorEventArgs, IgxRectChangedEventArgs, IgxShapeDataSource, IgxShapeDataSourceDynamicModule, IgxShapeDataSourceModule, IgxShapeFilterRecordEventArgs, IgxShapefileRecord, IgxSimpleDefaultTooltipComponent, IgxStockChangedEventArgs, IgxStyle, IgxTemplateContentComponent, IgxTemplateContentDynamicModule, IgxTemplateContentModule, IgxToolCommandArgumentCollection, IgxTooltipContainerComponent, IgxTooltipContainerDynamicModule, IgxTooltipContainerModule, IgxTransactionState, IgxTriangulationDataSource, IgxTriangulationStatusEventArgs, IgxUploadDataCompletedEventArgs, IgxUploadStringCompletedEventArgs, Image, ImageCapturedEventArgs, ImageCapturedEventArgsDescription, ImageCapturedEventArgsDescriptionMetadata, 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, LayoutPrimaryKeyValueDescription, LayoutPrimaryKeyValueDescriptionMetadata, LayoutPrimaryKeyValueDescriptionModule, LeastSquaresFit, LeftClipper, LegendBaseDescription, LegendBaseDescriptionMetadata, LegendDescription, LegendDescriptionMetadata, LegendDescriptionModule, LegendEmptyValuesMode, LegendEmptyValuesMode_$type, LegendItemBadgeMode, LegendItemBadgeMode_$type, LegendItemBadgeShape, LegendItemBadgeShape_$type, LegendItemHelper, LegendMouseButtonEventArgsDescription, LegendMouseButtonEventArgsDescriptionMetadata, LegendMouseEventArgsDescription, LegendMouseEventArgsDescriptionMetadata, LegendSizeChangedEventArgsDescription, LegendSizeChangedEventArgsDescriptionMetadata, Line, LineEquation, LineFragmentDescription, LineFragmentDescriptionMetadata, LineFragmentDescriptionModule, LineGeometry, LineGeometryData, LineSegment, LineSegmentData, LineSeriesDescription, LineSeriesDescriptionMetadata, LineSeriesDescriptionModule, LineVisualData, LinearContourValueResolverDescription, LinearContourValueResolverDescriptionMetadata, LinearContourValueResolverDescriptionModule, LinearGaugeCoreDescriptionModule, LinearGaugeDashboardTileDescriptionModule, LinearGaugeDescription, LinearGaugeDescriptionMetadata, LinearGaugeDescriptionModule, LinearGradientBrush, LinearGradientBrushAppearanceData, LinearGraphRangeDescription, LinearGraphRangeDescriptionMetadata, LinearGraphRangeDescriptionModule, LinkedList$1, LinkedListNode$1, List$1, ListPanelActiveRowChangedEventArgsDescription, ListPanelActiveRowChangedEventArgsDescriptionMetadata, ListPanelContentRebindEventArgsDescription, ListPanelContentRebindEventArgsDescriptionMetadata, ListPanelContentRecycledEventArgsDescription, ListPanelContentRecycledEventArgsDescriptionMetadata, ListPanelContentRefreshedEventArgsDescription, ListPanelContentRefreshedEventArgsDescriptionMetadata, ListPanelDescription, ListPanelDescriptionMetadata, ListPanelDescriptionModule, ListPanelItemEventArgsDescription, ListPanelItemEventArgsDescriptionMetadata, ListPanelItemModelDescription, ListPanelItemModelDescriptionMetadata, ListPanelPrimaryKeyValueDescription, ListPanelPrimaryKeyValueDescriptionMetadata, ListPanelPrimaryKeyValueDescriptionModule, ListPanelSelectedItemsChangedEventArgsDescription, ListPanelSelectedItemsChangedEventArgsDescriptionMetadata, ListPanelSelectedKeysChangedEventArgsDescription, ListPanelSelectedKeysChangedEventArgsDescriptionMetadata, ListPanelSelectionChangedEventArgsDescription, ListPanelSelectionChangedEventArgsDescriptionMetadata, ListPanelTemplateHeightRequestedEventArgsDescription, ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata, ListPanelTemplateItemUpdatingEventArgsDescription, ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata, ListPanelTemplateWidthRequestedEventArgsDescription, ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata, 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, MultiSliderDescription, MultiSliderDescriptionMetadata, MultiSliderDescriptionModule, MultiSliderResolvingToolTipValueEventArgsDescription, MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata, MultiSliderThumbDescription, MultiSliderThumbDescriptionMetadata, MultiSliderThumbValueChangingEventArgsDescription, MultiSliderThumbValueChangingEventArgsDescriptionMetadata, MultiSliderTrackThumbRangeDescription, MultiSliderTrackThumbRangeDescriptionMetadata, MultiSliderYValueChangingEventArgsDescription, MultiSliderYValueChangingEventArgsDescriptionMetadata, NamePatcher, NameTable, NameTable_Entry, NameValueCollection, NamespaceHandling_$type, NativeUI, NativeUIAbsolutePanel, NativeUIAlignItems_$type, NativeUIBoxSizing_$type, NativeUIBuiltInEvents_$type, NativeUIBuiltInProperties_$type, NativeUIButton, NativeUIButtonClickedEventArgs, NativeUIButtonDisplayType_$type, NativeUIButtonGroup, NativeUIButtonGroupDisplayType_$type, NativeUIButtonGroupSelectionChangedEventArgs, NativeUICheckbox, NativeUICheckboxChangeEventArgs, NativeUICheckboxList, NativeUICheckboxListChangeEventArgs, NativeUICheckboxListIndexTypeChangedEventArgs, NativeUICheckboxListIndexType_$type, NativeUICheckboxListKeysClearedEventArgs, NativeUIChildren, NativeUIClickedEventArgs, NativeUIColorEditor, NativeUIColorEditorValueChangedEventArgs, NativeUIColumn, NativeUICombo, NativeUIComboSelectedItemsChangedEventArgs, NativeUIComponent, NativeUIComponentBuiltInType_$type, NativeUIComponentHorizontalAlignment_$type, NativeUIComponentVerticalAlignment_$type, NativeUIContainer, NativeUIContent, NativeUICursor_$type, NativeUIDisplayDensity_$type, NativeUIDropDown, NativeUIDropDownSelectedValueChangedEventArgs, NativeUIElementBridge, NativeUIElementFactoryFlavor, NativeUIElementFactoryFlavor_$type, NativeUIFocusEventArgs, NativeUIGrid, NativeUIGridHeightType_$type, NativeUIGridWidthType_$type, NativeUIIcon, NativeUIIconButton, NativeUIInput, NativeUIInputChangingEventArgs, NativeUIInputDisplayType_$type, NativeUIInputType_$type, NativeUIInputsFactory, NativeUIKeyEventArgs, NativeUILabel, NativeUIMouseEventArgs, NativeUIPlaceContent_$type, NativeUIPopup, NativeUIPopupAlignment_$type, NativeUIPopupAnimationType_$type, NativeUIPopupClosedEventArgs, NativeUIPopupDirection_$type, NativeUIPopupMeasuringContentEventArgs, NativeUIPopupOpenedEventArgs, NativeUIPopupPointerPosition_$type, NativeUIPositionChangedEventArgs, NativeUISizeChangedEventArgs, NativeUISlider, NativeUISliderOrientation_$type, NativeUISliderValueChangedEventArgs, NativeUIWindow, NeedleBeingDragged, NeedleBeingDragged_$type, 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, OnClosedEventArgs, OnClosedEventArgsDescription, OnClosedEventArgsDescriptionMetadata, OnCollapsedEventArgsDescription, OnCollapsedEventArgsDescriptionMetadata, OnExpandedEventArgsDescription, OnExpandedEventArgsDescriptionMetadata, OnPopupEventArgs, OnPopupEventArgsDescription, OnPopupEventArgsDescriptionMetadata, OpenStreetMapImageryDescription, OpenStreetMapImageryDescriptionMetadata, OpenStreetMapImageryDescriptionModule, OpenStreetMapTileSource, OperationFilterExpression, OperationFilterExpressionDescription, OperationFilterExpressionDescriptionMetadata, OperatorSelectorClosingEventArgsDescription, OperatorSelectorClosingEventArgsDescriptionMetadata, OperatorSelectorOpeningEventArgsDescription, OperatorSelectorOpeningEventArgsDescriptionMetadata, OperatorSelectorValueChangedEventArgsDescription, OperatorSelectorValueChangedEventArgsDescriptionMetadata, OrdinalTimeXAxisDescription, OrdinalTimeXAxisDescriptionMetadata, OrdinalTimeXAxisDescriptionModule, OthersCategoryContextDescription, OthersCategoryContextDescriptionMetadata, OthersCategoryContextDescriptionModule, OthersCategoryType, OthersCategoryType_$type, OverlayProxyDescriptionModule, OverlayTextInfoDescription, OverlayTextInfoDescriptionMetadata, OverlayTextUpdatingEventArgsDescription, OverlayTextUpdatingEventArgsDescriptionMetadata, OverlaysDescriptionModule, PageChangedEventArgsDescription, PageChangedEventArgsDescriptionMetadata, PagePredictionEngine, PageRequestedEventArgs, PageRequestedEventArgsDescription, PageRequestedEventArgsDescriptionMetadata, PagedDataSource, PagedDataSourceDescription, PagedDataSourceDescriptionMetadata, Pair$2, Panel, PanelBridge, 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, PieChartDashboardTileDescriptionModule, PieChartDescription, PieChartDescriptionMetadata, PieChartDescriptionModule, PieSliceCollisionGeometry, PieSliceDataContextDescription, PieSliceDataContextDescriptionMetadata, PieSliceOthersContextDescription, PieSliceOthersContextDescriptionMetadata, PinnedAreaSeparatorDescription, PinnedAreaSeparatorDescriptionMetadata, PinnedAreaSeparatorDescriptionModule, PlatformAPIHelper, 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, Popup, PopupAlignment, PopupAlignment_$type, PopupAnimation, PopupAnimationType, PopupAnimationType_$type, PopupDescription, PopupDescriptionMetadata, PopupDescriptionModule, PopupDirection, PopupDirection_$type, PopupMeasuringContentSizeEventArgs, PopupMeasuringContentSizeEventArgsDescription, PopupMeasuringContentSizeEventArgsDescriptionMetadata, PopupPointerPosition, PopupPointerPosition_$type, PopupView, PopupVisualModelExport, Popup_InnerAnimationInfo, Popup_OuterAnimationInfo, PortalManager, PositiveVolumeIndexIndicatorDescription, PositiveVolumeIndexIndicatorDescriptionMetadata, PositiveVolumeIndexIndicatorDescriptionModule, PredictionEnginePageCandidate, PrefixDescription, PrefixDescriptionMetadata, PrefixDescriptionModule, PriceChannelOverlayDescription, PriceChannelOverlayDescriptionMetadata, PriceChannelOverlayDescriptionModule, PriceVolumeTrendIndicatorDescription, PriceVolumeTrendIndicatorDescriptionMetadata, PriceVolumeTrendIndicatorDescriptionModule, PrimaryKeyValueDescription, PrimaryKeyValueDescriptionMetadata, PrimaryKeyValueDescriptionModule, PrimitiveAppearanceData, PrimitiveVisualData, PrimitiveVisualDataList, PriorityDataRule, ProgressiveLoadStatusEventArgsDescription, ProgressiveLoadStatusEventArgsDescriptionMetadata, PromiseFactory, PromiseWrapper, PropertyChangedEventArgs, PropertyChangedEventArgs$1, PropertyEditorDataSourceDescription, PropertyEditorDataSourceDescriptionMetadata, PropertyEditorDescription, PropertyEditorDescriptionMetadata, PropertyEditorDescriptionModule, PropertyEditorDescriptionObjectDescription, PropertyEditorDescriptionObjectDescriptionMetadata, PropertyEditorPanelDescription, PropertyEditorPanelDescriptionMetadata, PropertyEditorPanelDescriptionModule, PropertyEditorPropertyDescriptionButtonClickEventArgsDescription, PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionChangedEventArgsDescription, PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription, PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionDescription, PropertyEditorPropertyDescriptionDescriptionMetadata, PropertyEditorPropertyDescriptionDescriptionModule, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata, PropertyMetadata, PropertyPath, PropertyReferenceFilterExpression, PropertyReferenceFilterExpressionDescription, PropertyReferenceFilterExpressionDescriptionMetadata, PropertyUpdatedEventArgs, PropertyUpdatedEventArgsDescription, PropertyUpdatedEventArgsDescriptionMetadata, ProportionalCategoryAngleAxisDescription, ProportionalCategoryAngleAxisDescriptionMetadata, ProportionalCategoryAngleAxisDescriptionModule, 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, RadialBaseChartDescription, RadialBaseChartDescriptionMetadata, RadialBaseDescription, RadialBaseDescriptionMetadata, RadialColumnSeriesDescription, RadialColumnSeriesDescriptionMetadata, RadialColumnSeriesDescriptionModule, RadialGaugeCoreDescriptionModule, RadialGaugeDashboardTileDescriptionModule, RadialGaugeDescription, RadialGaugeDescriptionMetadata, RadialGaugeDescriptionModule, RadialGaugeRangeDescription, RadialGaugeRangeDescriptionMetadata, RadialGaugeRangeDescriptionModule, RadialLabelMode, RadialLabelMode_$type, RadialLineSeriesDescription, RadialLineSeriesDescriptionMetadata, RadialLineSeriesDescriptionModule, RadialPieSeriesDescription, RadialPieSeriesDescriptionMetadata, RadialPieSeriesDescriptionModule, Random, RangeAreaSeriesDescription, RangeAreaSeriesDescriptionMetadata, RangeAreaSeriesDescriptionModule, RangeCategorySeriesDescription, RangeCategorySeriesDescriptionMetadata, RangeColumnSeriesDescription, RangeColumnSeriesDescriptionMetadata, RangeColumnSeriesDescriptionModule, RateOfChangeAndMomentumIndicatorDescription, RateOfChangeAndMomentumIndicatorDescriptionMetadata, RateOfChangeAndMomentumIndicatorDescriptionModule, ReactCodeBehindCodeGeneratingComponentRendererCodeEmitter, ReactMarkupCodeGeneratingComponentRendererCodeEmitter, ReadOnlyCollection$1, ReadOnlyDoubleCollection, 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, SVGAttributeType_$type, SVGBrush, SVGBrushType_$type, SVGCircle, SVGEllipse, SVGGroup, SVGLine, SVGNode, SVGNodeType_$type, SVGParser, SVGPath, SVGPresentationNode, SVGRect, SVGRoot, ScaleLegendDescription, ScaleLegendDescriptionMetadata, ScaleLegendDescriptionModule, ScaleTransform, ScalerParamsDescription, ScalerParamsDescriptionMetadata, ScalerVisibleBounds, ScatterAreaSeriesDescription, ScatterAreaSeriesDescriptionMetadata, ScatterAreaSeriesDescriptionModule, ScatterBaseDescription, ScatterBaseDescriptionMetadata, ScatterContourSeriesDescription, ScatterContourSeriesDescriptionMetadata, ScatterContourSeriesDescriptionModule, ScatterDataInfo, ScatterDataRule, ScatterLineSeriesDescription, ScatterLineSeriesDescriptionMetadata, ScatterLineSeriesDescriptionModule, ScatterPolygonSeriesDescription, ScatterPolygonSeriesDescriptionMetadata, ScatterPolygonSeriesDescriptionModule, ScatterPolylineSeriesDescription, ScatterPolylineSeriesDescriptionMetadata, ScatterPolylineSeriesDescriptionModule, ScatterSeriesDescription, ScatterSeriesDescriptionMetadata, ScatterSeriesDescriptionModule, ScatterSplineSeriesDescription, ScatterSplineSeriesDescriptionMetadata, ScatterSplineSeriesDescriptionModule, ScatterTriangulationSeriesDescription, ScatterTriangulationSeriesDescriptionMetadata, ScatterType_$type, SchedulableRenderWrapper, ScrollbarStyle, 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, SeriesDescription, SeriesDescriptionMetadata, SeriesHighlightedValuesDisplayMode, SeriesHighlightedValuesDisplayMode_$type, SeriesLayerDescription, SeriesLayerDescriptionMetadata, SeriesLayerPropertyOverlayDescription, SeriesLayerPropertyOverlayDescriptionMetadata, SeriesLayerPropertyOverlayValueResolvingEventArgsDescription, SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata, SeriesMatcherDescription, SeriesMatcherDescriptionMetadata, SeriesMatcherDescriptionModule, SeriesViewerDescription, SeriesViewerDescriptionMetadata, SeriesViewerManipulationEventArgsDescription, SeriesViewerManipulationEventArgsDescriptionMetadata, SeriesViewerSelectedSeriesItemsChangedEventArgsDescription, SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata, SeriesViewerSelectedSeriesItemsChangingEventArgsDescription, SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata, Shape, ShapeChartUtils, ShapeDataInfo, ShapeDataRule, ShapeDataSourceDescription, ShapeDataSourceDescriptionMetadata, ShapeDataSourceDescriptionModule, ShapeFileUtil, ShapeFilterRecordEventArgs, ShapeFilterRecordEventArgsDescription, ShapeFilterRecordEventArgsDescriptionMetadata, ShapeSeriesBaseDescription, ShapeSeriesBaseDescriptionMetadata, ShapeTags, ShapeType, ShapeType_$type, ShapefileConverter, ShapefileRecord, ShapefileRecordDescription, ShapefileRecordDescriptionMetadata, SimpleCategorySeriesRule, SimpleDefaultTooltipDescriptionMetadata, SimpleDefaultTooltipExtendedDescriptionMetadata, SimpleFinancialPriceSeriesRule, SimpleGaugeRule, SimplePieSeriesRule, SimpleScatterSeriesRule, Size, SizeData, SizeDescription, SizeScaleDescription, SizeScaleDescriptionMetadata, SizeScaleDescriptionModule, SliceClickEventArgsDescription, SliceClickEventArgsDescriptionMetadata, SliceEventArgsDescription, SliceEventArgsDescriptionMetadata, SlowStochasticOscillatorIndicatorDescription, SlowStochasticOscillatorIndicatorDescriptionMetadata, SlowStochasticOscillatorIndicatorDescriptionModule, SmartPlaceableWrapper$1, SmartPlacer, SmartPosition, SmartPosition_$type, SolidBrushAppearanceData, SortDescription, SortDescriptionCollection, SortGroupParser, 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, 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, SummaryParser, SummaryRowDescription, SummaryRowDescriptionMetadata, SummaryRowRootDescription, SummaryRowRootDescriptionMetadata, SummaryRowRootDescriptionModule, SummaryRowSectionDescription, SummaryRowSectionDescriptionMetadata, SummaryRowSectionDescriptionModule, SvgIconCollection, SvgIconRegistry, SweepDirection, SweepDirection_$type, SyncableObservableCollection$1, SyncableObservableCollection$2, SyncableObservableCollectionChangedListener_$type, SynchronizedReader, SynchronizedWriter, SystemException, TRIXIndicatorDescription, TRIXIndicatorDescriptionMetadata, TRIXIndicatorDescriptionModule, TSCodeGeneratingComponentRendererDataEmitter, TSCodeGeneratingComponentRendererHandlerEmitter, TSCodeGeneratingComponentRendererModuleEmitter, TSCodeGeneratingComponentRendererTemplateEmitter, Task, Task$1, TaskCompletionSource$1, TaskFactory, TaskStatus, TaskStatus_$type, TemplateCellInfoDescription, TemplateCellInfoDescriptionMetadata, TemplateCellUpdatingEventArgsDescription, TemplateCellUpdatingEventArgsDescriptionMetadata, TemplateColumnDescription, TemplateColumnDescriptionMetadata, TemplateColumnDescriptionModule, TemplateContainerDescriptionModule, TemplateContentDescriptionModule, TemplateContentExtendedDescriptionModule, TemplateHeaderCellInfoDescription, TemplateHeaderCellInfoDescriptionMetadata, TemplateHeaderCellUpdatingEventArgsDescription, TemplateHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateHeaderDescription, TemplateHeaderDescriptionMetadata, TemplateHeaderDescriptionModule, TemplateSectionHeaderCellInfoDescription, TemplateSectionHeaderCellInfoDescriptionMetadata, TemplateSectionHeaderCellUpdatingEventArgsDescription, TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateSectionHeaderDescription, TemplateSectionHeaderDescriptionMetadata, TemplateSectionHeaderDescriptionModule, TestFilterSyntaxVisitor, TestRandomness, TextBlock, TextCellInfoDescription, TextCellInfoDescriptionMetadata, TextColumnDescription, TextColumnDescriptionMetadata, TextColumnDescriptionModule, TextFontMetrics, TextHeaderCellInfoDescription, TextHeaderCellInfoDescriptionMetadata, TextHeaderDescription, TextHeaderDescriptionMetadata, TextHeaderDescriptionModule, TextIconSetConditionalStyleDescription, TextIconSetConditionalStyleDescriptionMetadata, TextIconSetConditionalStyleDescriptionModule, 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, ToolActionButtonDescription, ToolActionButtonDescriptionMetadata, ToolActionButtonDescriptionModule, ToolActionButtonInfo, ToolActionButtonInfoDescription, ToolActionButtonInfoDescriptionMetadata, ToolActionButtonInfoDisplayType, ToolActionButtonInfoDisplayType_$type, ToolActionButtonPairDescription, ToolActionButtonPairDescriptionMetadata, ToolActionButtonPairDescriptionModule, ToolActionButtonPairInfo, ToolActionButtonPairInfoDescription, ToolActionButtonPairInfoDescriptionMetadata, ToolActionCheckboxDescription, ToolActionCheckboxDescriptionMetadata, ToolActionCheckboxDescriptionModule, ToolActionCheckboxInfo, ToolActionCheckboxInfoDescription, ToolActionCheckboxInfoDescriptionMetadata, ToolActionCheckboxListDescription, ToolActionCheckboxListDescriptionMetadata, ToolActionCheckboxListDescriptionModule, ToolActionCheckboxListInfo, ToolActionCheckboxListInfoDescription, ToolActionCheckboxListInfoDescriptionMetadata, ToolActionColorEditorDescription, ToolActionColorEditorDescriptionMetadata, ToolActionColorEditorDescriptionModule, ToolActionColorEditorInfo, ToolActionColorEditorInfoDescription, ToolActionColorEditorInfoDescriptionMetadata, ToolActionComboDescription, ToolActionComboDescriptionMetadata, ToolActionComboDescriptionModule, ToolActionComboInfo, ToolActionComboInfoDescription, ToolActionComboInfoDescriptionMetadata, ToolActionDescription, ToolActionDescriptionMetadata, ToolActionEventDetailDescription, ToolActionEventDetailDescriptionMetadata, ToolActionFieldSelectorAggregationDescription, ToolActionFieldSelectorAggregationDescriptionMetadata, ToolActionFieldSelectorAggregationDescriptionModule, ToolActionFieldSelectorDescription, ToolActionFieldSelectorDescriptionMetadata, ToolActionFieldSelectorDescriptionModule, ToolActionFieldSelectorInfo, ToolActionFieldSelectorInfoDescription, ToolActionFieldSelectorInfoDescriptionMetadata, ToolActionFieldSelectorInfoType, ToolActionFieldSelectorInfoType_$type, ToolActionFieldSelectorSelectedAggregationDescription, ToolActionFieldSelectorSelectedAggregationDescriptionMetadata, ToolActionFieldSelectorSelectedAggregationDescriptionModule, ToolActionGroupHeaderDescription, ToolActionGroupHeaderDescriptionMetadata, ToolActionGroupHeaderDescriptionModule, ToolActionGroupHeaderInfo, ToolActionGroupHeaderInfoDescription, ToolActionGroupHeaderInfoDescriptionMetadata, ToolActionIconButtonDescription, ToolActionIconButtonDescriptionMetadata, ToolActionIconButtonDescriptionModule, ToolActionIconButtonInfo, ToolActionIconButtonInfoDescription, ToolActionIconButtonInfoDescriptionMetadata, ToolActionIconMenuDescription, ToolActionIconMenuDescriptionMetadata, ToolActionIconMenuDescriptionModule, ToolActionIconMenuInfo, ToolActionIconMenuInfoDescription, ToolActionIconMenuInfoDescriptionMetadata, ToolActionInfo, ToolActionInfoDensity, ToolActionInfoDensity_$type, ToolActionInfoDescription, ToolActionInfoDescriptionMetadata, ToolActionLabelDescription, ToolActionLabelDescriptionMetadata, ToolActionLabelDescriptionModule, ToolActionLabelInfo, ToolActionLabelInfoDescription, ToolActionLabelInfoDescriptionMetadata, ToolActionNumberInputDescription, ToolActionNumberInputDescriptionMetadata, ToolActionNumberInputDescriptionModule, ToolActionNumberInputInfo, ToolActionNumberInputInfoDescription, ToolActionNumberInputInfoDescriptionMetadata, ToolActionPerformedEventArgsDescription, ToolActionPerformedEventArgsDescriptionMetadata, ToolActionPopupOpeningEventArgsDescription, ToolActionPopupOpeningEventArgsDescriptionMetadata, ToolActionRadioDescription, ToolActionRadioDescriptionMetadata, ToolActionRadioDescriptionModule, ToolActionRadioInfo, ToolActionRadioInfoDescription, ToolActionRadioInfoDescriptionMetadata, ToolActionSeparatorDescription, ToolActionSeparatorDescriptionMetadata, ToolActionSeparatorDescriptionModule, ToolActionSeparatorInfo, ToolActionSeparatorInfoDescription, ToolActionSeparatorInfoDescriptionMetadata, ToolActionSubPanelDescription, ToolActionSubPanelDescriptionMetadata, ToolActionSubPanelDescriptionModule, ToolActionSubPanelInfo, ToolActionSubPanelInfoDescription, ToolActionSubPanelInfoDescriptionMetadata, ToolActionTextInputDescription, ToolActionTextInputDescriptionMetadata, ToolActionTextInputDescriptionModule, ToolActionTextInputInfo, ToolActionTextInputInfoDescription, ToolActionTextInputInfoDescriptionMetadata, ToolActionType, ToolActionType_$type, ToolCommand, ToolCommandArgument, ToolCommandArgumentCollection, ToolCommandArgumentDescription, ToolCommandArgumentDescriptionMetadata, ToolCommandDescription, ToolCommandDescriptionMetadata, ToolCommandEventArgsDescription, ToolCommandEventArgsDescriptionMetadata, ToolCommandExecutionState, ToolCommandExecutionState_$type, ToolCommandStateChanged, ToolCommandStateType, ToolCommandStateType_$type, ToolContextBindingDescription, ToolContextBindingDescriptionMetadata, ToolContextBindingInfo, ToolContextBindingInfoDescription, ToolContextBindingInfoDescriptionMetadata, ToolContextBindingMode, ToolContextBindingMode_$type, ToolContextValueType, ToolContextValueType_$type, ToolPanelContentRefreshedEventArgsDescription, ToolPanelContentRefreshedEventArgsDescriptionMetadata, ToolPanelContextChangedEventArgsDescription, ToolPanelContextChangedEventArgsDescriptionMetadata, ToolPanelDescription, ToolPanelDescriptionMetadata, ToolPanelDescriptionModule, ToolbarDescription, ToolbarDescriptionMetadata, ToolbarDescriptionModule, ToolbarSubMenuClosingEventArgsDescription, ToolbarSubMenuClosingEventArgsDescriptionMetadata, ToolbarSubMenuOpeningEventArgsDescription, ToolbarSubMenuOpeningEventArgsDescriptionMetadata, 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, TransitionOutCompletedEventArgsDescription, TransitionOutCompletedEventArgsDescriptionMetadata, TranslateTransform, TreemapDescription, TreemapDescriptionMetadata, TreemapDescriptionModule, TreemapNodePointerEventArgsDescription, TreemapNodePointerEventArgsDescriptionMetadata, TreemapNodeStyleDescription, TreemapNodeStyleDescriptionMetadata, TreemapNodeStyleDescriptionModule, TreemapNodeStyleMappingDescription, TreemapNodeStyleMappingDescriptionMetadata, TreemapNodeStyleMappingDescriptionModule, TreemapNodeStylingEventArgsDescription, TreemapNodeStylingEventArgsDescriptionMetadata, TrendCalculators, TrendLineLayerDescription, TrendLineLayerDescriptionMetadata, TrendLineLayerDescriptionModule, 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, ValueLayerDescription, ValueLayerDescriptionMetadata, ValueLayerDescriptionModule, ValueOverlayDescription, ValueOverlayDescriptionMetadata, ValueOverlayDescriptionModule, ValueType, VersionQueueAction, VersionQueueActionTimeout, VersionQueueHelper, 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, WebAccordionDescription, WebAccordionDescriptionMetadata, WebAccordionDescriptionModule, WebActionStripDescription, WebActionStripDescriptionMetadata, WebActionStripDescriptionModule, WebActionStripResourceStringsDescription, WebActionStripResourceStringsDescriptionMetadata, WebActiveNodeChangeEventArgsDescription, WebActiveNodeChangeEventArgsDescriptionMetadata, WebActiveNodeChangeEventArgsDetailDescription, WebActiveNodeChangeEventArgsDetailDescriptionMetadata, WebActivePaneEventArgsDescription, WebActivePaneEventArgsDescriptionMetadata, WebActivePaneEventArgsDetailDescription, WebActivePaneEventArgsDetailDescriptionMetadata, WebActiveStepChangedEventArgsDescription, WebActiveStepChangedEventArgsDescriptionMetadata, WebActiveStepChangedEventArgsDetailDescription, WebActiveStepChangedEventArgsDetailDescriptionMetadata, WebActiveStepChangingEventArgsDescription, WebActiveStepChangingEventArgsDescriptionMetadata, WebActiveStepChangingEventArgsDetailDescription, WebActiveStepChangingEventArgsDetailDescriptionMetadata, WebAvatarDescription, WebAvatarDescriptionMetadata, WebAvatarDescriptionModule, WebBadgeDescription, WebBadgeDescriptionMetadata, WebBadgeDescriptionModule, WebBannerDescription, WebBannerDescriptionMetadata, WebBannerDescriptionModule, WebBaseAlertLikeDescription, WebBaseAlertLikeDescriptionMetadata, WebBaseAlertLikeDescriptionModule, WebBaseComboBoxLikeDescription, WebBaseComboBoxLikeDescriptionMetadata, WebBaseComboBoxLikeDescriptionModule, WebBaseDateTimeFilteringOperandDescription, WebBaseDateTimeFilteringOperandDescriptionMetadata, WebBaseEventArgsDescription, WebBaseEventArgsDescriptionMetadata, WebBaseEventArgsDetailDescription, WebBaseEventArgsDetailDescriptionMetadata, WebBaseExporterDescription, WebBaseExporterDescriptionMetadata, WebBaseOptionLikeDescription, WebBaseOptionLikeDescriptionMetadata, WebBaseOptionLikeDescriptionModule, WebBaseSearchInfoDescription, WebBaseSearchInfoDescriptionMetadata, WebBaseToolbarColumnActionsDirectiveDescription, WebBaseToolbarColumnActionsDirectiveDescriptionMetadata, WebBaseToolbarColumnActionsDirectiveDescriptionModule, WebBaseToolbarDirectiveDescription, WebBaseToolbarDirectiveDescriptionMetadata, WebBooleanFilteringOperandDescription, WebBooleanFilteringOperandDescriptionMetadata, WebButtonBaseDescription, WebButtonBaseDescriptionMetadata, WebButtonBaseDescriptionModule, WebButtonDescription, WebButtonDescriptionMetadata, WebButtonDescriptionModule, WebButtonGroupDescription, WebButtonGroupDescriptionMetadata, WebButtonGroupDescriptionModule, WebCalendarBaseDescription, WebCalendarBaseDescriptionMetadata, WebCalendarBaseDescriptionModule, WebCalendarDateEventArgsDescription, WebCalendarDateEventArgsDescriptionMetadata, WebCalendarDescription, WebCalendarDescriptionMetadata, WebCalendarDescriptionModule, WebCalendarResourceStringsDescription, WebCalendarResourceStringsDescriptionMetadata, WebCancelableBrowserEventArgsDescription, WebCancelableBrowserEventArgsDescriptionMetadata, WebCancelableBrowserEventArgsDetailDescription, WebCancelableBrowserEventArgsDetailDescriptionMetadata, WebCancelableEventArgsDescription, WebCancelableEventArgsDescriptionMetadata, WebCancelableEventArgsDetailDescription, WebCancelableEventArgsDetailDescriptionMetadata, WebCardActionsDescription, WebCardActionsDescriptionMetadata, WebCardActionsDescriptionModule, WebCardContentDescription, WebCardContentDescriptionMetadata, WebCardContentDescriptionModule, WebCardDescription, WebCardDescriptionMetadata, WebCardDescriptionModule, WebCardHeaderDescription, WebCardHeaderDescriptionMetadata, WebCardHeaderDescriptionModule, WebCardMediaDescription, WebCardMediaDescriptionMetadata, WebCardMediaDescriptionModule, WebCarouselDescription, WebCarouselDescriptionMetadata, WebCarouselDescriptionModule, WebCarouselIndicatorDescription, WebCarouselIndicatorDescriptionMetadata, WebCarouselIndicatorDescriptionModule, WebCarouselSlideDescription, WebCarouselSlideDescriptionMetadata, WebCarouselSlideDescriptionModule, WebCellPositionDescription, WebCellPositionDescriptionMetadata, WebCellTemplateContextDescription, WebCellTemplateContextDescriptionMetadata, WebCellTypeDescription, WebCellTypeDescriptionMetadata, WebCheckboxBaseDescription, WebCheckboxBaseDescriptionMetadata, WebCheckboxBaseDescriptionModule, WebCheckboxChangeEventArgsDescription, WebCheckboxChangeEventArgsDescriptionMetadata, WebCheckboxChangeEventArgsDetailDescription, WebCheckboxChangeEventArgsDetailDescriptionMetadata, WebCheckboxDescription, WebCheckboxDescriptionMetadata, WebCheckboxDescriptionModule, WebChipDescription, WebChipDescriptionMetadata, WebChipDescriptionModule, WebCircularGradientDescription, WebCircularGradientDescriptionMetadata, WebCircularGradientDescriptionModule, WebCircularProgressDescription, WebCircularProgressDescriptionMetadata, WebCircularProgressDescriptionModule, WebClient, WebClipboardOptionsDescription, WebClipboardOptionsDescriptionMetadata, WebCodeBehindCodeGeneratingComponentRendererCodeEmitter, WebColumnComponentEventArgsDescription, WebColumnComponentEventArgsDescriptionMetadata, WebColumnDescription, WebColumnDescriptionMetadata, WebColumnDescriptionModule, WebColumnEditorOptionsDescription, WebColumnEditorOptionsDescriptionMetadata, WebColumnExportingEventArgsDescription, WebColumnExportingEventArgsDescriptionMetadata, WebColumnExportingEventArgsDetailDescription, WebColumnExportingEventArgsDetailDescriptionMetadata, WebColumnGroupDescription, WebColumnGroupDescriptionMetadata, WebColumnGroupDescriptionModule, WebColumnLayoutDescription, WebColumnLayoutDescriptionMetadata, WebColumnLayoutDescriptionModule, WebColumnMovingEndEventArgsDescription, WebColumnMovingEndEventArgsDescriptionMetadata, WebColumnMovingEndEventArgsDetailDescription, WebColumnMovingEndEventArgsDetailDescriptionMetadata, WebColumnMovingEventArgsDescription, WebColumnMovingEventArgsDescriptionMetadata, WebColumnMovingEventArgsDetailDescription, WebColumnMovingEventArgsDetailDescriptionMetadata, WebColumnMovingStartEventArgsDescription, WebColumnMovingStartEventArgsDescriptionMetadata, WebColumnMovingStartEventArgsDetailDescription, WebColumnMovingStartEventArgsDetailDescriptionMetadata, WebColumnPipeArgsDescription, WebColumnPipeArgsDescriptionMetadata, WebColumnResizeEventArgsDescription, WebColumnResizeEventArgsDescriptionMetadata, WebColumnResizeEventArgsDetailDescription, WebColumnResizeEventArgsDetailDescriptionMetadata, WebColumnSelectionEventArgsDescription, WebColumnSelectionEventArgsDescriptionMetadata, WebColumnSelectionEventArgsDetailDescription, WebColumnSelectionEventArgsDetailDescriptionMetadata, WebColumnStateDescription, WebColumnStateDescriptionMetadata, WebColumnTemplateContextDescription, WebColumnTemplateContextDescriptionMetadata, WebColumnToggledEventArgsDescription, WebColumnToggledEventArgsDescriptionMetadata, WebColumnToggledEventArgsDetailDescription, WebColumnToggledEventArgsDetailDescriptionMetadata, WebColumnVisibilityChangedEventArgsDescription, WebColumnVisibilityChangedEventArgsDescriptionMetadata, WebColumnVisibilityChangedEventArgsDetailDescription, WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata, WebColumnVisibilityChangingEventArgsDescription, WebColumnVisibilityChangingEventArgsDescriptionMetadata, WebColumnVisibilityChangingEventArgsDetailDescription, WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata, WebColumnsAutoGeneratedEventArgsDescription, WebColumnsAutoGeneratedEventArgsDescriptionMetadata, WebColumnsAutoGeneratedEventArgsDetailDescription, WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata, WebComboChangeEventArgsDescription, WebComboChangeEventArgsDescriptionMetadata, WebComboChangeEventArgsDetailDescription, WebComboChangeEventArgsDetailDescriptionMetadata, WebComboDescription, WebComboDescriptionMetadata, WebComboDescriptionModule, WebComponentArrayDataValueChangedEventArgsDescription, WebComponentArrayDataValueChangedEventArgsDescriptionMetadata, WebComponentBoolValueChangedEventArgsDescription, WebComponentBoolValueChangedEventArgsDescriptionMetadata, WebComponentDataValueChangedEventArgsDescription, WebComponentDataValueChangedEventArgsDescriptionMetadata, WebComponentDateValueChangedEventArgsDescription, WebComponentDateValueChangedEventArgsDescriptionMetadata, WebComponentValueChangedEventArgsDescription, WebComponentValueChangedEventArgsDescriptionMetadata, WebComponentsCodeBehindCodeGeneratingComponentRendererCodeEmitter, WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter, WebContentPaneDescription, WebContentPaneDescriptionMetadata, WebContentPaneDescriptionModule, WebDataCloneStrategyDescription, WebDataCloneStrategyDescriptionMetadata, WebDateFilteringOperandDescription, WebDateFilteringOperandDescriptionMetadata, WebDatePickerDescription, WebDatePickerDescriptionMetadata, WebDatePickerDescriptionModule, WebDateSummaryOperandDescription, WebDateSummaryOperandDescriptionMetadata, WebDateTimeFilteringOperandDescription, WebDateTimeFilteringOperandDescriptionMetadata, WebDateTimeInputDescription, WebDateTimeInputDescriptionMetadata, WebDateTimeInputDescriptionModule, WebDialogDescription, WebDialogDescriptionMetadata, WebDialogDescriptionModule, WebDimensionsChangeDescription, WebDimensionsChangeDescriptionMetadata, WebDimensionsChangeDetailDescription, WebDimensionsChangeDetailDescriptionMetadata, WebDimensionsChangeEventArgsDescription, WebDimensionsChangeEventArgsDescriptionMetadata, WebDividerDescription, WebDividerDescriptionMetadata, WebDividerDescriptionModule, WebDockManagerDescription, WebDockManagerDescriptionMetadata, WebDockManagerDescriptionModule, WebDockManagerLayoutDescription, WebDockManagerLayoutDescriptionMetadata, WebDockManagerLayoutDescriptionModule, WebDockManagerPaneDescription, WebDockManagerPaneDescriptionMetadata, WebDockManagerPointDescription, WebDockManagerPointDescriptionMetadata, WebDockManagerPointDescriptionModule, WebDockManagerResourceStringsDescription, WebDockManagerResourceStringsDescriptionMetadata, WebDockPaneActionDescription, WebDockPaneActionDescriptionMetadata, WebDockingIndicatorDescription, WebDockingIndicatorDescriptionMetadata, WebDocumentHostDescription, WebDocumentHostDescriptionMetadata, WebDocumentHostDescriptionModule, WebDragServiceDescription, WebDragServiceDescriptionMetadata, WebDragServiceDescriptionModule, WebDropdownDescription, WebDropdownDescriptionMetadata, WebDropdownDescriptionModule, WebDropdownGroupDescription, WebDropdownGroupDescriptionMetadata, WebDropdownGroupDescriptionModule, WebDropdownHeaderDescription, WebDropdownHeaderDescriptionMetadata, WebDropdownHeaderDescriptionModule, WebDropdownItemComponentEventArgsDescription, WebDropdownItemComponentEventArgsDescriptionMetadata, WebDropdownItemDescription, WebDropdownItemDescriptionMetadata, WebDropdownItemDescriptionModule, WebExpansionPanelComponentEventArgsDescription, WebExpansionPanelComponentEventArgsDescriptionMetadata, WebExpansionPanelDescription, WebExpansionPanelDescriptionMetadata, WebExpansionPanelDescriptionModule, WebExporterEventArgsDescription, WebExporterEventArgsDescriptionMetadata, WebExporterEventArgsDetailDescription, WebExporterEventArgsDetailDescriptionMetadata, WebExporterOptionsBaseDescription, WebExporterOptionsBaseDescriptionMetadata, WebExpressionTreeDescription, WebExpressionTreeDescriptionMetadata, WebExpressionTreeOrFilteringExpressionDescription, WebExpressionTreeOrFilteringExpressionDescriptionMetadata, WebFieldEditorOptionsDescription, WebFieldEditorOptionsDescriptionMetadata, WebFieldPipeArgsDescription, WebFieldPipeArgsDescriptionMetadata, WebFilteringEventArgsDescription, WebFilteringEventArgsDescriptionMetadata, WebFilteringEventArgsDetailDescription, WebFilteringEventArgsDetailDescriptionMetadata, WebFilteringExpressionDescription, WebFilteringExpressionDescriptionMetadata, WebFilteringExpressionsTreeDescription, WebFilteringExpressionsTreeDescriptionMetadata, WebFilteringExpressionsTreeDetailDescription, WebFilteringExpressionsTreeDetailDescriptionMetadata, WebFilteringExpressionsTreeEventArgsDescription, WebFilteringExpressionsTreeEventArgsDescriptionMetadata, WebFilteringExpressionsTreeOrFilteringExpressionDescription, WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata, WebFilteringExpressionsTreeOrFilteringOperationDescription, WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata, WebFilteringOperandDescription, WebFilteringOperandDescriptionMetadata, WebFilteringOperationDescription, WebFilteringOperationDescriptionMetadata, WebFilteringOptionsDescription, WebFilteringOptionsDescriptionMetadata, WebFilteringStrategyDescription, WebFilteringStrategyDescriptionMetadata, WebFloatPaneActionDescription, WebFloatPaneActionDescriptionMetadata, WebFloatingPaneResizeEventArgsDescription, WebFloatingPaneResizeEventArgsDescriptionMetadata, WebFloatingPaneResizeEventArgsDetailDescription, WebFloatingPaneResizeEventArgsDetailDescriptionMetadata, WebFloatingPaneResizeMoveEventArgsDescription, WebFloatingPaneResizeMoveEventArgsDescriptionMetadata, WebFloatingPaneResizeMoveEventArgsDetailDescription, WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata, WebForOfDataChangeEventArgsDescription, WebForOfDataChangeEventArgsDescriptionMetadata, WebForOfDataChangeEventArgsDetailDescription, WebForOfDataChangeEventArgsDetailDescriptionMetadata, WebForOfDataChangingEventArgsDescription, WebForOfDataChangingEventArgsDescriptionMetadata, WebForOfDataChangingEventArgsDetailDescription, WebForOfDataChangingEventArgsDetailDescriptionMetadata, WebForOfStateDescription, WebForOfStateDescriptionMetadata, WebForOfStateDetailDescription, WebForOfStateDetailDescriptionMetadata, WebForOfStateEventArgsDescription, WebForOfStateEventArgsDescriptionMetadata, WebGridActionsBaseDirectiveDescription, WebGridActionsBaseDirectiveDescriptionMetadata, WebGridActionsBaseDirectiveDescriptionModule, WebGridBaseDirectiveDescription, WebGridBaseDirectiveDescriptionMetadata, WebGridCellEventArgsDescription, WebGridCellEventArgsDescriptionMetadata, WebGridCellEventArgsDetailDescription, WebGridCellEventArgsDetailDescriptionMetadata, WebGridCellIdentifierDescription, WebGridCellIdentifierDescriptionMetadata, WebGridClipboardEventDescription, WebGridClipboardEventDescriptionMetadata, WebGridClipboardEventDetailDescription, WebGridClipboardEventDetailDescriptionMetadata, WebGridClipboardEventEventArgsDescription, WebGridClipboardEventEventArgsDescriptionMetadata, WebGridContextMenuEventArgsDescription, WebGridContextMenuEventArgsDescriptionMetadata, WebGridContextMenuEventArgsDetailDescription, WebGridContextMenuEventArgsDetailDescriptionMetadata, WebGridCreatedEventArgsDescription, WebGridCreatedEventArgsDescriptionMetadata, WebGridCreatedEventArgsDetailDescription, WebGridCreatedEventArgsDetailDescriptionMetadata, WebGridDescription, WebGridDescriptionMetadata, WebGridDescriptionModule, WebGridEditDoneEventArgsDescription, WebGridEditDoneEventArgsDescriptionMetadata, WebGridEditDoneEventArgsDetailDescription, WebGridEditDoneEventArgsDetailDescriptionMetadata, WebGridEditEventArgsDescription, WebGridEditEventArgsDescriptionMetadata, WebGridEditEventArgsDetailDescription, WebGridEditEventArgsDetailDescriptionMetadata, WebGridEditingActionsDescription, WebGridEditingActionsDescriptionMetadata, WebGridEditingActionsDescriptionModule, WebGridEmptyTemplateContextDescription, WebGridEmptyTemplateContextDescriptionMetadata, WebGridFormGroupCreatedEventArgsDescription, WebGridFormGroupCreatedEventArgsDescriptionMetadata, WebGridFormGroupCreatedEventArgsDetailDescription, WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata, WebGridGroupingStrategyDescription, WebGridGroupingStrategyDescriptionMetadata, WebGridHeaderTemplateContextDescription, WebGridHeaderTemplateContextDescriptionMetadata, WebGridKeydownEventArgsDescription, WebGridKeydownEventArgsDescriptionMetadata, WebGridKeydownEventArgsDetailDescription, WebGridKeydownEventArgsDetailDescriptionMetadata, WebGridMasterDetailContextDescription, WebGridMasterDetailContextDescriptionMetadata, WebGridPaginatorTemplateContextDescription, WebGridPaginatorTemplateContextDescriptionMetadata, WebGridPinningActionsDescription, WebGridPinningActionsDescriptionMetadata, WebGridPinningActionsDescriptionModule, WebGridResourceStringsDescription, WebGridResourceStringsDescriptionMetadata, WebGridRowDescription, WebGridRowDescriptionMetadata, WebGridRowDragGhostContextDescription, WebGridRowDragGhostContextDescriptionMetadata, WebGridRowEditActionsTemplateContextDescription, WebGridRowEditActionsTemplateContextDescriptionMetadata, WebGridRowEditTextTemplateContextDescription, WebGridRowEditTextTemplateContextDescriptionMetadata, WebGridRowEventArgsDescription, WebGridRowEventArgsDescriptionMetadata, WebGridRowEventArgsDetailDescription, WebGridRowEventArgsDetailDescriptionMetadata, WebGridRowTemplateContextDescription, WebGridRowTemplateContextDescriptionMetadata, WebGridScrollEventArgsDescription, WebGridScrollEventArgsDescriptionMetadata, WebGridScrollEventArgsDetailDescription, WebGridScrollEventArgsDetailDescriptionMetadata, WebGridSelectionRangeDescription, WebGridSelectionRangeDescriptionMetadata, WebGridSelectionRangeDetailDescription, WebGridSelectionRangeDetailDescriptionMetadata, WebGridSelectionRangeEventArgsDescription, WebGridSelectionRangeEventArgsDescriptionMetadata, WebGridSortingStrategyDescription, WebGridSortingStrategyDescriptionMetadata, WebGridStateBaseDirectiveDescription, WebGridStateBaseDirectiveDescriptionMetadata, WebGridStateBaseDirectiveDescriptionModule, WebGridStateCollectionDescription, WebGridStateCollectionDescriptionMetadata, WebGridStateDescription, WebGridStateDescriptionMetadata, WebGridStateDescriptionModule, WebGridStateInfoDescription, WebGridStateInfoDescriptionMetadata, WebGridStateInfoDetailDescription, WebGridStateInfoDetailDescriptionMetadata, WebGridStateInfoEventArgsDescription, WebGridStateInfoEventArgsDescriptionMetadata, WebGridStateOptionsDescription, WebGridStateOptionsDescriptionMetadata, WebGridTemplateContextDescription, WebGridTemplateContextDescriptionMetadata, WebGridToolbarActionsDescription, WebGridToolbarActionsDescriptionMetadata, WebGridToolbarActionsDescriptionModule, WebGridToolbarAdvancedFilteringDescription, WebGridToolbarAdvancedFilteringDescriptionMetadata, WebGridToolbarAdvancedFilteringDescriptionModule, WebGridToolbarBaseActionDescription, WebGridToolbarBaseActionDescriptionMetadata, WebGridToolbarContentDescription, WebGridToolbarContentDescriptionMetadata, WebGridToolbarDescription, WebGridToolbarDescriptionMetadata, WebGridToolbarDescriptionModule, WebGridToolbarExportEventArgsDescription, WebGridToolbarExportEventArgsDescriptionMetadata, WebGridToolbarExportEventArgsDetailDescription, WebGridToolbarExportEventArgsDetailDescriptionMetadata, WebGridToolbarExporterDescription, WebGridToolbarExporterDescriptionMetadata, WebGridToolbarExporterDescriptionModule, WebGridToolbarHidingDescription, WebGridToolbarHidingDescriptionMetadata, WebGridToolbarHidingDescriptionModule, WebGridToolbarPinningDescription, WebGridToolbarPinningDescriptionMetadata, WebGridToolbarPinningDescriptionModule, WebGridToolbarTemplateContextDescription, WebGridToolbarTemplateContextDescriptionMetadata, WebGridToolbarTitleDescription, WebGridToolbarTitleDescriptionMetadata, WebGridToolbarTitleDescriptionModule, WebGridValidationStateDescription, WebGridValidationStateDescriptionMetadata, WebGridValidationStatusEventArgsDescription, WebGridValidationStatusEventArgsDescriptionMetadata, WebGridValidationStatusEventArgsDetailDescription, WebGridValidationStatusEventArgsDetailDescriptionMetadata, WebGroupByExpandStateDescription, WebGroupByExpandStateDescriptionMetadata, WebGroupByExpandStateEventArgsDescription, WebGroupByExpandStateEventArgsDescriptionMetadata, WebGroupByKeyDescription, WebGroupByKeyDescriptionMetadata, WebGroupByRecordDescription, WebGroupByRecordDescriptionMetadata, WebGroupByResultDescription, WebGroupByResultDescriptionMetadata, WebGroupByRowSelectorTemplateContextDescription, WebGroupByRowSelectorTemplateContextDescriptionMetadata, WebGroupByRowSelectorTemplateDetailsDescription, WebGroupByRowSelectorTemplateDetailsDescriptionMetadata, WebGroupByRowTemplateContextDescription, WebGroupByRowTemplateContextDescriptionMetadata, WebGroupingDoneEventArgsDescription, WebGroupingDoneEventArgsDescriptionMetadata, WebGroupingDoneEventArgsDetailDescription, WebGroupingDoneEventArgsDetailDescriptionMetadata, WebGroupingExpressionDescription, WebGroupingExpressionDescriptionMetadata, WebGroupingExpressionEventArgsDescription, WebGroupingExpressionEventArgsDescriptionMetadata, WebGroupingStateDescription, WebGroupingStateDescriptionMetadata, WebHeadSelectorTemplateContextDescription, WebHeadSelectorTemplateContextDescriptionMetadata, WebHeadSelectorTemplateDetailsDescription, WebHeadSelectorTemplateDetailsDescriptionMetadata, WebHeaderCollection, WebHeaderTypeDescription, WebHeaderTypeDescriptionMetadata, WebHierarchicalGridBaseDirectiveDescription, WebHierarchicalGridBaseDirectiveDescriptionMetadata, WebHierarchicalGridDescription, WebHierarchicalGridDescriptionMetadata, WebHierarchicalGridDescriptionModule, WebIconButtonDescription, WebIconButtonDescriptionMetadata, WebIconButtonDescriptionModule, WebIconDescription, WebIconDescriptionMetadata, WebIconDescriptionModule, WebIconMetaDescription, WebIconMetaDescriptionMetadata, WebImportsHalper, WebInputBaseDescription, WebInputBaseDescriptionMetadata, WebInputBaseDescriptionModule, WebInputDescription, WebInputDescriptionMetadata, WebInputDescriptionModule, WebLayoutChangeEventArgsDescription, WebLayoutChangeEventArgsDescriptionMetadata, WebLinearProgressDescription, WebLinearProgressDescriptionMetadata, WebLinearProgressDescriptionModule, WebListDescription, WebListDescriptionMetadata, WebListDescriptionModule, WebListHeaderDescription, WebListHeaderDescriptionMetadata, WebListHeaderDescriptionModule, WebListItemDescription, WebListItemDescriptionMetadata, WebListItemDescriptionModule, WebMaskInputBaseDescription, WebMaskInputBaseDescriptionMetadata, WebMaskInputBaseDescriptionModule, WebMaskInputDescription, WebMaskInputDescriptionMetadata, WebMaskInputDescriptionModule, WebMoveFloatingPaneActionDescription, WebMoveFloatingPaneActionDescriptionMetadata, WebMoveTabActionDescription, WebMoveTabActionDescriptionMetadata, WebNavDrawerDescription, WebNavDrawerDescriptionMetadata, WebNavDrawerDescriptionModule, WebNavDrawerHeaderItemDescription, WebNavDrawerHeaderItemDescriptionMetadata, WebNavDrawerHeaderItemDescriptionModule, WebNavDrawerItemDescription, WebNavDrawerItemDescriptionMetadata, WebNavDrawerItemDescriptionModule, WebNavbarDescription, WebNavbarDescriptionMetadata, WebNavbarDescriptionModule, WebNumberEventArgsDescription, WebNumberEventArgsDescriptionMetadata, WebNumberFilteringOperandDescription, WebNumberFilteringOperandDescriptionMetadata, WebNumberSummaryOperandDescription, WebNumberSummaryOperandDescriptionMetadata, WebOverlayOutletDirectiveDescription, WebOverlayOutletDirectiveDescriptionMetadata, WebOverlaySettingsDescription, WebOverlaySettingsDescriptionMetadata, WebPageCancellableEventArgsDescription, WebPageCancellableEventArgsDescriptionMetadata, WebPageCancellableEventArgsDetailDescription, WebPageCancellableEventArgsDetailDescriptionMetadata, WebPageEventArgsDescription, WebPageEventArgsDescriptionMetadata, WebPageEventArgsDetailDescription, WebPageEventArgsDetailDescriptionMetadata, WebPaginatorDescription, WebPaginatorDescriptionMetadata, WebPaginatorDescriptionModule, WebPaginatorResourceStringsDescription, WebPaginatorResourceStringsDescriptionMetadata, WebPagingStateDescription, WebPagingStateDescriptionMetadata, WebPaneCloseEventArgsDescription, WebPaneCloseEventArgsDescriptionMetadata, WebPaneCloseEventArgsDetailDescription, WebPaneCloseEventArgsDetailDescriptionMetadata, WebPaneDragActionDescription, WebPaneDragActionDescriptionMetadata, WebPaneDragEndEventArgsDescription, WebPaneDragEndEventArgsDescriptionMetadata, WebPaneDragEndEventArgsDetailDescription, WebPaneDragEndEventArgsDetailDescriptionMetadata, WebPaneDragOverEventArgsDescription, WebPaneDragOverEventArgsDescriptionMetadata, WebPaneDragOverEventArgsDetailDescription, WebPaneDragOverEventArgsDetailDescriptionMetadata, WebPaneDragStartEventArgsDescription, WebPaneDragStartEventArgsDescriptionMetadata, WebPaneDragStartEventArgsDetailDescription, WebPaneDragStartEventArgsDetailDescriptionMetadata, WebPaneHeaderConnectionEventArgsDescription, WebPaneHeaderConnectionEventArgsDescriptionMetadata, WebPaneHeaderConnectionEventArgsDetailDescription, WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata, WebPaneHeaderElementDescription, WebPaneHeaderElementDescriptionMetadata, WebPaneHeaderElementDescriptionModule, WebPanePinnedEventArgsDescription, WebPanePinnedEventArgsDescriptionMetadata, WebPanePinnedEventArgsDetailDescription, WebPanePinnedEventArgsDetailDescriptionMetadata, WebPinColumnCancellableEventArgsDescription, WebPinColumnCancellableEventArgsDescriptionMetadata, WebPinColumnCancellableEventArgsDetailDescription, WebPinColumnCancellableEventArgsDetailDescriptionMetadata, WebPinColumnEventArgsDescription, WebPinColumnEventArgsDescriptionMetadata, WebPinColumnEventArgsDetailDescription, WebPinColumnEventArgsDetailDescriptionMetadata, WebPinRowEventArgsDescription, WebPinRowEventArgsDescriptionMetadata, WebPinRowEventArgsDetailDescription, WebPinRowEventArgsDetailDescriptionMetadata, WebPinningConfigDescription, WebPinningConfigDescriptionMetadata, WebPivotAggregatorDescription, WebPivotAggregatorDescriptionMetadata, WebPivotConfigurationChangedEventArgsDescription, WebPivotConfigurationChangedEventArgsDescriptionMetadata, WebPivotConfigurationChangedEventArgsDetailDescription, WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata, WebPivotConfigurationDescription, WebPivotConfigurationDescriptionMetadata, WebPivotDataSelectorDescription, WebPivotDataSelectorDescriptionMetadata, WebPivotDataSelectorDescriptionModule, WebPivotDateDimensionDescription, WebPivotDateDimensionDescriptionMetadata, WebPivotDateDimensionDescriptionModule, WebPivotDateDimensionOptionsDescription, WebPivotDateDimensionOptionsDescriptionMetadata, WebPivotDimensionDescription, WebPivotDimensionDescriptionMetadata, WebPivotDimensionDetailDescription, WebPivotDimensionDetailDescriptionMetadata, WebPivotDimensionEventArgsDescription, WebPivotDimensionEventArgsDescriptionMetadata, WebPivotDimensionStrategyDescription, WebPivotDimensionStrategyDescriptionMetadata, WebPivotGridColumnDescription, WebPivotGridColumnDescriptionMetadata, WebPivotGridDescription, WebPivotGridDescriptionMetadata, WebPivotGridDescriptionModule, WebPivotGridRecordDescription, WebPivotGridRecordDescriptionMetadata, WebPivotGridValueTemplateContextDescription, WebPivotGridValueTemplateContextDescriptionMetadata, WebPivotKeysDescription, WebPivotKeysDescriptionMetadata, WebPivotUISettingsDescription, WebPivotUISettingsDescriptionMetadata, WebPivotValueDescription, WebPivotValueDescriptionMetadata, WebPivotValueDetailDescription, WebPivotValueDetailDescriptionMetadata, WebPivotValueEventArgsDescription, WebPivotValueEventArgsDescriptionMetadata, WebPositionSettingsDescription, WebPositionSettingsDescriptionMetadata, WebPositionStrategyDescription, WebPositionStrategyDescriptionMetadata, WebProgressBaseDescription, WebProgressBaseDescriptionMetadata, WebProgressBaseDescriptionModule, WebRadioChangeEventArgsDescription, WebRadioChangeEventArgsDescriptionMetadata, WebRadioChangeEventArgsDetailDescription, WebRadioChangeEventArgsDetailDescriptionMetadata, WebRadioDescription, WebRadioDescriptionMetadata, WebRadioDescriptionModule, WebRadioGroupDescription, WebRadioGroupDescriptionMetadata, WebRadioGroupDescriptionModule, WebRangeSliderDescription, WebRangeSliderDescriptionMetadata, WebRangeSliderDescriptionModule, WebRangeSliderValueDescription, WebRangeSliderValueDescriptionMetadata, WebRangeSliderValueEventArgsDescription, WebRangeSliderValueEventArgsDescriptionMetadata, WebRatingDescription, WebRatingDescriptionMetadata, WebRatingDescriptionModule, WebRatingSymbolDescription, WebRatingSymbolDescriptionMetadata, WebRatingSymbolDescriptionModule, WebRippleDescription, WebRippleDescriptionMetadata, WebRippleDescriptionModule, WebRowDataCancelableEventArgsDescription, WebRowDataCancelableEventArgsDescriptionMetadata, WebRowDataCancelableEventArgsDetailDescription, WebRowDataCancelableEventArgsDetailDescriptionMetadata, WebRowDataEventArgsDescription, WebRowDataEventArgsDescriptionMetadata, WebRowDataEventArgsDetailDescription, WebRowDataEventArgsDetailDescriptionMetadata, WebRowDirectiveDescription, WebRowDirectiveDescriptionMetadata, WebRowDragEndEventArgsDescription, WebRowDragEndEventArgsDescriptionMetadata, WebRowDragEndEventArgsDetailDescription, WebRowDragEndEventArgsDetailDescriptionMetadata, WebRowDragStartEventArgsDescription, WebRowDragStartEventArgsDescriptionMetadata, WebRowDragStartEventArgsDetailDescription, WebRowDragStartEventArgsDetailDescriptionMetadata, WebRowExportingEventArgsDescription, WebRowExportingEventArgsDescriptionMetadata, WebRowExportingEventArgsDetailDescription, WebRowExportingEventArgsDetailDescriptionMetadata, WebRowIslandDescription, WebRowIslandDescriptionMetadata, WebRowIslandDescriptionModule, WebRowSelectionEventArgsDescription, WebRowSelectionEventArgsDescriptionMetadata, WebRowSelectionEventArgsDetailDescription, WebRowSelectionEventArgsDetailDescriptionMetadata, WebRowSelectorTemplateContextDescription, WebRowSelectorTemplateContextDescriptionMetadata, WebRowSelectorTemplateDetailsDescription, WebRowSelectorTemplateDetailsDescriptionMetadata, WebRowToggleEventArgsDescription, WebRowToggleEventArgsDescriptionMetadata, WebRowToggleEventArgsDetailDescription, WebRowToggleEventArgsDetailDescriptionMetadata, WebRowTypeDescription, WebRowTypeDescriptionMetadata, WebScrollStrategyDescription, WebScrollStrategyDescriptionMetadata, WebSearchInfoDescription, WebSearchInfoDescriptionMetadata, WebSelectDescription, WebSelectDescriptionMetadata, WebSelectDescriptionModule, WebSelectGroupDescription, WebSelectGroupDescriptionMetadata, WebSelectGroupDescriptionModule, WebSelectHeaderDescription, WebSelectHeaderDescriptionMetadata, WebSelectHeaderDescriptionModule, WebSelectItemComponentEventArgsDescription, WebSelectItemComponentEventArgsDescriptionMetadata, WebSelectItemDescription, WebSelectItemDescriptionMetadata, WebSelectItemDescriptionModule, WebSizeDescription, WebSizeDescriptionMetadata, WebSliderBaseDescription, WebSliderBaseDescriptionMetadata, WebSliderBaseDescriptionModule, WebSliderDescription, WebSliderDescriptionMetadata, WebSliderDescriptionModule, WebSliderLabelDescription, WebSliderLabelDescriptionMetadata, WebSliderLabelDescriptionModule, WebSnackbarDescription, WebSnackbarDescriptionMetadata, WebSnackbarDescriptionModule, WebSortingEventArgsDescription, WebSortingEventArgsDescriptionMetadata, WebSortingEventArgsDetailDescription, WebSortingEventArgsDetailDescriptionMetadata, WebSortingExpressionDescription, WebSortingExpressionDescriptionMetadata, WebSortingExpressionEventArgsDescription, WebSortingExpressionEventArgsDescriptionMetadata, WebSortingOptionsDescription, WebSortingOptionsDescriptionMetadata, WebSortingStrategyDescription, WebSortingStrategyDescriptionMetadata, WebSplitPaneDescription, WebSplitPaneDescriptionMetadata, WebSplitPaneDescriptionModule, WebStepDescription, WebStepDescriptionMetadata, WebStepDescriptionModule, WebStepperDescription, WebStepperDescriptionMetadata, WebStepperDescriptionModule, WebStringFilteringOperandDescription, WebStringFilteringOperandDescriptionMetadata, WebSummaryExpressionDescription, WebSummaryExpressionDescriptionMetadata, WebSummaryOperandDescription, WebSummaryOperandDescriptionMetadata, WebSummaryResultDescription, WebSummaryResultDescriptionMetadata, WebSummaryTemplateContextDescription, WebSummaryTemplateContextDescriptionMetadata, WebSwitchDescription, WebSwitchDescriptionMetadata, WebSwitchDescriptionModule, WebTabComponentEventArgsDescription, WebTabComponentEventArgsDescriptionMetadata, WebTabDescription, WebTabDescriptionMetadata, WebTabDescriptionModule, WebTabGroupPaneDescription, WebTabGroupPaneDescriptionMetadata, WebTabGroupPaneDescriptionModule, WebTabHeaderConnectionEventArgsDescription, WebTabHeaderConnectionEventArgsDescriptionMetadata, WebTabHeaderConnectionEventArgsDetailDescription, WebTabHeaderConnectionEventArgsDetailDescriptionMetadata, WebTabHeaderElementDescription, WebTabHeaderElementDescriptionMetadata, WebTabHeaderElementDescriptionModule, WebTabsDescription, WebTabsDescriptionMetadata, WebTabsDescriptionModule, WebTextareaDescription, WebTextareaDescriptionMetadata, WebTextareaDescriptionModule, WebTileChangeStateEventArgsDescription, WebTileChangeStateEventArgsDescriptionMetadata, WebTileChangeStateEventArgsDetailDescription, WebTileChangeStateEventArgsDetailDescriptionMetadata, WebTileComponentEventArgsDescription, WebTileComponentEventArgsDescriptionMetadata, WebTileDescription, WebTileDescriptionMetadata, WebTileDescriptionModule, WebTileManagerDescription, WebTileManagerDescriptionMetadata, WebTileManagerDescriptionModule, WebTimeFilteringOperandDescription, WebTimeFilteringOperandDescriptionMetadata, WebTimeSummaryOperandDescription, WebTimeSummaryOperandDescriptionMetadata, WebToastDescription, WebToastDescriptionMetadata, WebToastDescriptionModule, WebToggleButtonDescription, WebToggleButtonDescriptionMetadata, WebToggleButtonDescriptionModule, WebToggleViewCancelableEventArgsDescription, WebToggleViewCancelableEventArgsDescriptionMetadata, WebToggleViewCancelableEventArgsDetailDescription, WebToggleViewCancelableEventArgsDetailDescriptionMetadata, WebToggleViewEventArgsDescription, WebToggleViewEventArgsDescriptionMetadata, WebToggleViewEventArgsDetailDescription, WebToggleViewEventArgsDetailDescriptionMetadata, WebTooltipDescription, WebTooltipDescriptionMetadata, WebTooltipDescriptionModule, WebTransactionServiceDescription, WebTransactionServiceDescriptionMetadata, WebTreeDescription, WebTreeDescriptionMetadata, WebTreeDescriptionModule, WebTreeGridDescription, WebTreeGridDescriptionMetadata, WebTreeGridDescriptionModule, WebTreeGridRecordDescription, WebTreeGridRecordDescriptionMetadata, WebTreeItemComponentEventArgsDescription, WebTreeItemComponentEventArgsDescriptionMetadata, WebTreeItemDescription, WebTreeItemDescriptionMetadata, WebTreeItemDescriptionModule, WebTreeSelectionEventArgsDescription, WebTreeSelectionEventArgsDescriptionMetadata, WebTreeSelectionEventArgsDetailDescription, WebTreeSelectionEventArgsDetailDescriptionMetadata, WebValidationErrorsDescription, WebValidationErrorsDescriptionMetadata, WebValuesChangeDescription, WebValuesChangeDescriptionMetadata, WebValuesChangeDetailDescription, WebValuesChangeDetailDescriptionMetadata, WebValuesChangeEventArgsDescription, WebValuesChangeEventArgsDescriptionMetadata, 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, createMutationObserver, 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, doubleCollectionToString, endsWith1, ensureBool, ensureEnum, enumGetBox, enumToString, floor10, fromBrushCollection, fromColorCollection, fromDict, fromDoubleCollection, fromEn, fromEnum, fromOADate, fromPoint, fromRect, fromSize, fromSpinal, getAllPropertyNames, getBoxIfEnum, getColorStringSafe, getEn, getEnumerator, getEnumeratorObject, getInstanceType, getModifiedProps, ieeeRemainder, indexOfAny, initializePropertiesFromCss, intDivide, intSToU, intToString, intToString1, interfaceToInternal, 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, toDoubleCollection, 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 };
333443
+ export { APIFactory, AbsolutePanelBridge, AbsoluteVolumeOscillatorIndicatorDescription, AbsoluteVolumeOscillatorIndicatorDescriptionMetadata, AbsoluteVolumeOscillatorIndicatorDescriptionModule, AbstractEnumerable, AbstractEnumerator, AccumulationDistributionIndicatorDescription, AccumulationDistributionIndicatorDescriptionMetadata, AccumulationDistributionIndicatorDescriptionModule, Activator, AggregateException, AggregatedDataProvider, AggregatedDataProviderLayerInfo, AggregatedDataProviderLayerMap, AggregatedDataProviderTargetDataSourceNotifier, AggregatedDataProviderTopLayer, AlignLinearGraphLabelEventArgsDescription, AlignLinearGraphLabelEventArgsDescriptionMetadata, AlignRadialGaugeLabelEventArgsDescription, AlignRadialGaugeLabelEventArgsDescriptionMetadata, AnchoredCategorySeriesDescription, AnchoredCategorySeriesDescriptionMetadata, AnchoredRadialSeriesDescription, AnchoredRadialSeriesDescriptionMetadata, AngleSimplifier, AngularCodeBehindCodeGeneratingComponentRendererCodeEmitter, AngularRenderer, AngularTemplateCodeGeneratingComponentRendererCodeEmitter, AngularWrapper, AnimationBrowserTickProvider, AnimationIdleEventArgsDescription, AnimationIdleEventArgsDescriptionMetadata, 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, AsyncVirtualDataTaskCompletionSource, AverageDirectionalIndexIndicatorDescription, AverageDirectionalIndexIndicatorDescriptionMetadata, AverageDirectionalIndexIndicatorDescriptionModule, AverageSummaryCalculator, AverageTrueRangeIndicatorDescription, AverageTrueRangeIndicatorDescriptionMetadata, AverageTrueRangeIndicatorDescriptionModule, AxisAnnotationDescription, AxisAnnotationDescriptionMetadata, AxisDescription, AxisDescriptionMetadata, AxisRangeChangedEventArgsDescription, AxisRangeChangedEventArgsDescriptionMetadata, AzureMapsImageryDescription, AzureMapsImageryDescriptionMetadata, AzureMapsImageryDescriptionModule, AzureMapsTileSource, BarFragmentDescription, BarFragmentDescriptionMetadata, BarFragmentDescriptionModule, BarSeriesDescription, BarSeriesDescriptionMetadata, BarSeriesDescriptionModule, Base, BaseControlTheme, BaseControlTheme_$type, BaseDOMEventProxy, BaseDataSource, BaseDataSourceDescription, BaseDataSourceDescriptionMetadata, BaseError, BaseGenericDataSource, BaseGenericDataSourceDescription, BaseGenericDataSourceDescriptionMetadata, BaseTransactionService, BaseVirtualDataProvider, 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, BoxCollisionGeometry, BoxesCollisionGeometry, BreakEvenDataInfo, BreakEvenDataRule, BreakEvenItem, BreakEvenPoints, 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, CSSColorUtil, CalculatedColumnDescription, CalculatedColumnDescriptionMetadata, Calendar, CalendarDateDescription, CalendarDateDescriptionMetadata, CalendarDescription, CalendarDescriptionMetadata, CalendarDescriptionModule, CalendarFormatOptionsDescription, CalendarFormatOptionsDescriptionMetadata, CalendarWeekRule_$type, CalloutAnnotationDescription, CalloutAnnotationDescriptionMetadata, CalloutCollisionMode, CalloutCollisionMode_$type, 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, CaptureImageFormat, CaptureImageFormat_$type, CaptureImageSettings, CaptureImageSettingsDescription, CaptureImageSettingsDescriptionMetadata, CategoryAngleAxisDescription, CategoryAngleAxisDescriptionMetadata, CategoryAngleAxisDescriptionModule, CategoryAxisBaseDescription, CategoryAxisBaseDescriptionMetadata, CategoryChartCoreDescriptionModule, CategoryChartDescription, CategoryChartDescriptionMetadata, CategoryChartDescriptionModule, CategoryChartToolbarDescriptionModule, 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, ChartGroupDescriptionDescription, ChartGroupDescriptionDescriptionMetadata, ChartGroupDescriptionDescriptionModule, ChartMouseEventArgsDescription, ChartMouseEventArgsDescriptionMetadata, ChartResizeIdleEventArgsDescription, ChartResizeIdleEventArgsDescriptionMetadata, ChartSelectionDescription, ChartSelectionDescriptionMetadata, ChartSelectionDescriptionModule, ChartSeriesEventArgsDescription, ChartSeriesEventArgsDescriptionMetadata, ChartSortDescriptionDescription, ChartSortDescriptionDescriptionMetadata, ChartSortDescriptionDescriptionModule, ChartSummaryDescriptionDescription, ChartSummaryDescriptionDescriptionMetadata, ChartSummaryDescriptionDescriptionModule, CheckboxChangeEventArgsDescription, CheckboxChangeEventArgsDescriptionMetadata, CheckboxDescription, CheckboxDescriptionMetadata, CheckboxDescriptionModule, CheckboxListDescription, CheckboxListDescriptionMetadata, CheckboxListDescriptionModule, CheckboxListIndexTypeChangedEventArgsDescription, CheckboxListIndexTypeChangedEventArgsDescriptionMetadata, CheckboxListKeysClearedEventArgsDescription, CheckboxListKeysClearedEventArgsDescriptionMetadata, CheckedChangedEventArgsDescription, CheckedChangedEventArgsDescriptionMetadata, ChildContentDescriptionModule, ChildContentExtendedDescriptionModule, CircleCollisionGeometry, Clipboard, Clipper, CodeGeneratingCodeWriter, CodeGeneratingComponentRenderer, CodeGeneratingComponentRendererCodeEmitter, CodeGeneratingComponentRendererDataEmitter, CodeGeneratingComponentRendererDataEmitterItemType, CodeGeneratingComponentRendererDataEmitterPropertyType, CodeGeneratingComponentRendererHandlerEmitter, CodeGeneratingComponentRendererModuleEmitter, CodeGeneratingComponentRendererTemplateEmitter, 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, CollisionGeometry, CollisionGeometryType, CollisionGeometryType_$type, CollisionRect, Color, ColorCollectionUtil, ColorData, ColorEditorDescription, ColorEditorDescriptionMetadata, ColorEditorDescriptionModule, ColorEditorGotFocusEventArgsDescription, ColorEditorGotFocusEventArgsDescriptionMetadata, ColorEditorLostFocusEventArgsDescription, ColorEditorLostFocusEventArgsDescriptionMetadata, ColorEditorPanelClosedEventArgsDescription, ColorEditorPanelClosedEventArgsDescriptionMetadata, ColorEditorPanelDescription, ColorEditorPanelDescriptionMetadata, ColorEditorPanelDescriptionModule, ColorEditorPanelSelectedValueChangedEventArgsDescription, ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata, ColorScaleDescription, ColorScaleDescriptionMetadata, ColorUtil, ColumnChooserDescription, ColumnChooserDescriptionMetadata, ColumnChooserDescriptionModule, ColumnComparisonFilterConditionDescription, ColumnComparisonFilterConditionDescriptionMetadata, ColumnCustomFilterConditionDescription, ColumnCustomFilterConditionDescriptionMetadata, ColumnDependenciesDescriptionModule, 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, ComboEditorDescription, ComboEditorDescriptionMetadata, ComboEditorDescriptionModule, ComboEditorGotFocusEventArgsDescription, ComboEditorGotFocusEventArgsDescriptionMetadata, ComboEditorLostFocusEventArgsDescription, ComboEditorLostFocusEventArgsDescriptionMetadata, ComboEditorTextChangedEventArgsDescription, ComboEditorTextChangedEventArgsDescriptionMetadata, ComboEditorValueChangedEventArgsDescription, ComboEditorValueChangedEventArgsDescriptionMetadata, CommodityChannelIndexIndicatorDescription, CommodityChannelIndexIndicatorDescriptionMetadata, CommodityChannelIndexIndicatorDescriptionModule, CompareInfo, CompareUtil, Comparer$1, CompletedSinkImpl, ComponentRenderer, ComponentRendererAdapter, ComponentRendererMethodHelper, ComponentRendererMethodHelperArgumentBuilder, ComponentRendererMethodHelperBuilder, ComponentRendererMethodHelperReturnBuilder, ComponentRendererReferenceResolverEventArgs, ComponentRendererSerializationHelper, ComponentSizeHelpers, Compute, ContainerState, ContainsPropertyDataSourceFilterExpressionVisitor, ContentChildCollection, ContentControl, ContourValueResolverDescription, ContourValueResolverDescriptionMetadata, Control, ControlDisplayDensity, ControlDisplayDensity_$type, Convert, ConvertUtil, CoreGeometryUtil, CornerRadius, CountSummaryCalculator, CrosshairLayerDescription, CrosshairLayerDescriptionMetadata, CrosshairLayerDescriptionModule, CssColorPropertyAccessor, CssCornerRadiusPropertyAccessor, CssCursorPropertyAccessor, CssFloatPropertyAccessor, CssGradientUtil, CssHelper, CssHitTestVisiblePropertyAccessor, CssLengthArrayPropertyAccessor, CssLengthPropertyAccessor, CssPixelsPropertyAccessor, CssThicknessPropertyAccessor, CssTransformPropertyAccessor, CssVisibilityPropertyAccessor, CultureInfo, CustomContourValueResolverDescription, CustomContourValueResolverDescriptionMetadata, CustomContourValueResolverDescriptionModule, CustomContourValueResolverEventArgsDescription, CustomContourValueResolverEventArgsDescriptionMetadata, CustomIndicatorDescription, CustomIndicatorDescriptionMetadata, CustomIndicatorDescriptionModule, CustomLocalDataSourceDescription, CustomLocalDataSourceDescriptionMetadata, CustomLocalDataSourceDescriptionModule, CustomMapImageryDescription, CustomMapImageryDescriptionMetadata, CustomMapImageryDescriptionModule, CustomMapTileSource, CustomPaletteBrushScaleDescription, CustomPaletteBrushScaleDescriptionMetadata, CustomPaletteBrushScaleDescriptionModule, CustomPaletteColorScaleDescription, CustomPaletteColorScaleDescriptionMetadata, CustomPaletteColorScaleDescriptionModule, DOMEventProxy, DOMExecutionContext, DOMWindowBridge, DTDObjectModel, DVContainer, DVInteractivityDescriptionModule, DVSR, DashboardTileChangingContentEventArgsDescription, DashboardTileChangingContentEventArgsDescriptionMetadata, DashboardTileCustomizationDescription, DashboardTileCustomizationDescriptionMetadata, DashboardTileCustomizationDescriptionModule, DashboardTileDescription, DashboardTileDescriptionMetadata, DashboardTileDescriptionModule, DashboardTileFilterStringErrorsParsingEventArgsDescription, DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata, DashboardTileGroupDescriptionDescription, DashboardTileGroupDescriptionDescriptionMetadata, DashboardTileGroupDescriptionDescriptionModule, DashboardTileSortDescriptionDescription, DashboardTileSortDescriptionDescriptionMetadata, DashboardTileSortDescriptionDescriptionModule, DashboardTileSummaryDescriptionDescription, DashboardTileSummaryDescriptionDescriptionMetadata, DashboardTileSummaryDescriptionDescriptionModule, DataAbbreviationMode, DataAbbreviationMode_$type, DataAdapterRunContextRecursionType_$type, DataAnnotationAxisLayerDescription, DataAnnotationAxisLayerDescriptionMetadata, DataAnnotationBandLayerDescription, DataAnnotationBandLayerDescriptionMetadata, DataAnnotationBandLayerDescriptionModule, DataAnnotationInfoDescription, DataAnnotationInfoDescriptionMetadata, DataAnnotationItemDescription, DataAnnotationItemDescriptionMetadata, DataAnnotationLineLayerDescription, DataAnnotationLineLayerDescriptionMetadata, DataAnnotationLineLayerDescriptionModule, DataAnnotationPointLayerDescription, DataAnnotationPointLayerDescriptionMetadata, DataAnnotationRangeLayerDescription, DataAnnotationRangeLayerDescriptionMetadata, DataAnnotationRectLayerDescription, DataAnnotationRectLayerDescriptionMetadata, DataAnnotationRectLayerDescriptionModule, DataAnnotationShapeLayerDescription, DataAnnotationShapeLayerDescriptionMetadata, DataAnnotationSliceLayerDescription, DataAnnotationSliceLayerDescriptionMetadata, DataAnnotationSliceLayerDescriptionModule, DataAnnotationStripLayerDescription, DataAnnotationStripLayerDescriptionMetadata, DataAnnotationStripLayerDescriptionModule, DataAnnotationStyleEventArgsDescription, DataAnnotationStyleEventArgsDescriptionMetadata, DataBindingEventArgsDescription, DataBindingEventArgsDescriptionMetadata, DataChartAnnotationDescriptionModule, DataChartCategoryCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartCategoryTrendLineDescriptionModule, DataChartCoreDescriptionModule, DataChartDashboardTileDescriptionModule, DataChartDefaultTooltipsDescriptionMetadata, DataChartDefaultTooltipsExtendedDescriptionMetadata, DataChartDescription, DataChartDescriptionMetadata, DataChartExtendedAxesDescriptionModule, DataChartFinancialCoreDescriptionModule, DataChartFinancialDescriptionModule, DataChartFinancialIndicatorsDescriptionModule, DataChartFinancialOverlaysDescriptionModule, DataChartInteractivityDescriptionModule, DataChartMouseButtonEventArgsDescription, DataChartMouseButtonEventArgsDescriptionMetadata, DataChartPolarCoreDescriptionModule, DataChartPolarDescriptionModule, DataChartRadialCoreDescriptionModule, DataChartRadialDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartShapeCoreDescriptionModule, DataChartShapeDescriptionModule, DataChartStackedDescriptionModule, DataChartToolbarDescriptionModule, DataChartToolbarIconsDescriptionModule, DataChartVerticalCategoryCoreDescriptionModule, DataChartVerticalCategoryDescriptionModule, DataChartVisualDataDescriptionModule, DataContext, DataContextDescription, DataContextDescriptionMetadata, DataFormats, DataGridAllColumnsDescriptionModule, DataGridCellEventArgsDescription, DataGridCellEventArgsDescriptionMetadata, DataGridColumnDescription, DataGridColumnDescriptionMetadata, DataGridComparisonOperatorSelectorDescription, DataGridComparisonOperatorSelectorDescriptionMetadata, DataGridCoreDescriptionModule, DataGridDescription, DataGridDescriptionMetadata, DataGridDescriptionModule, DataGridExpansionIndicatorDescription, DataGridExpansionIndicatorDescriptionMetadata, DataGridFilterDialogDescription, DataGridFilterDialogDescriptionMetadata, DataGridPagerDescription, DataGridPagerDescriptionMetadata, DataGridPagerDescriptionModule, DataGridSortIndicatorDescription, DataGridSortIndicatorDescriptionMetadata, DataGridSummaryResultDescription, DataGridSummaryResultDescriptionMetadata, DataGridToolbarDescription, DataGridToolbarDescriptionMetadata, DataGridToolbarDescriptionModule, DataLegendDescription, DataLegendDescriptionMetadata, DataLegendDescriptionModule, DataLegendHeaderDateMode, DataLegendHeaderDateMode_$type, DataLegendHeaderTimeMode, DataLegendHeaderTimeMode_$type, DataLegendLabelMode, DataLegendLabelMode_$type, DataLegendLayoutMode, DataLegendLayoutMode_$type, DataLegendSeriesContext, DataLegendSeriesContextDescription, DataLegendSeriesContextDescriptionMetadata, DataLegendSeriesFamily, DataLegendSeriesFamily_$type, DataLegendSeriesGroupInfoDescription, DataLegendSeriesGroupInfoDescriptionMetadata, 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, DataPieBaseChartDescription, DataPieBaseChartDescriptionMetadata, DataPieChartCoreDescriptionModule, DataPieChartDescription, DataPieChartDescriptionMetadata, DataPieChartDescriptionModule, DataPieChartToolbarDescriptionModule, DataSeries, DataSeriesAdapter, DataSeriesAdapterCachedProviderType_$type, DataSeriesAdapterImplementation, DataSeriesAdapterPropertyInfo, DataSeriesAdapterProviderInfo, DataSeriesAdapterRemovingDuplicatesEventArgs, DataSeriesAdapterRuleCollection, DataSeriesAdapterRunContext, DataSeriesAdapterRunEventArgs, DataSeriesAdapterUpdateNotifier, DataSeriesAxisType, DataSeriesAxisType_$type, DataSeriesCollection, DataSeriesDataProviderAnalyzer, DataSeriesIntent, DataSeriesIntent_$type, DataSeriesMarker, DataSeriesMarker_$type, DataSeriesMemberPathHint, DataSeriesPropertyType, DataSeriesPropertyType_$type, DataSeriesToDescriptionCustomization, DataSeriesType, DataSeriesType_$type, DataSourceAggregatedResult, DataSourceAggregatedResultDescription, DataSourceAggregatedResultDescriptionMetadata, DataSourceBatchCompletedEventArgs, DataSourceBatchStartedEventArgs, DataSourceDataCommittedEventArgs, DataSourceDataProviderSchemaChangedEventArgs, DataSourceDataProviderSchemaChangedEventArgsDescription, DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata, DataSourceExecutionContext, DataSourceGroupDescription, DataSourceGroupDescriptionCollection, DataSourceGroupDescriptionDescription, DataSourceGroupDescriptionDescriptionMetadata, DataSourceGroupDescriptionDescriptionModule, DataSourceLocalDataProvider, DataSourcePageRequestPriority, DataSourcePageRequestPriority_$type, DataSourcePropertiesComparer, DataSourcePropertiesRequestedChangedEventArgs, DataSourcePropertiesRequestedChangedEventArgsDescription, DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata, DataSourceRootSummariesChangedEventArgs, DataSourceRootSummariesChangedEventArgsDescription, DataSourceRootSummariesChangedEventArgsDescriptionMetadata, DataSourceRowExpansionChangedEventArgs, DataSourceRowExpansionChangedEventArgsDescription, DataSourceRowExpansionChangedEventArgsDescriptionMetadata, DataSourceRowType, DataSourceRowType_$type, DataSourceSchemaChangedEventArgs, DataSourceSchemaChangedEventArgsDescription, DataSourceSchemaChangedEventArgsDescriptionMetadata, DataSourceSchemaPropertyType, DataSourceSchemaPropertyType_$type, DataSourceSectionHeaderDisplayMode, DataSourceSectionHeaderDisplayMode_$type, DataSourceSortDescription, DataSourceSortDescriptionCollection, DataSourceSortDescriptionDescription, DataSourceSortDescriptionDescriptionMetadata, DataSourceSortDescriptionDescriptionModule, DataSourceSpecialRow, DataSourceSpecialRowDescription, DataSourceSpecialRowDescriptionMetadata, DataSourceSummaryDescription, DataSourceSummaryDescriptionCollection, DataSourceSummaryDescriptionDescription, DataSourceSummaryDescriptionDescriptionMetadata, DataSourceSummaryDescriptionDescriptionModule, DataSourceSummaryOperand, DataSourceSummaryOperand_$type, 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, DatePartDeltasDescription, DatePartDeltasDescriptionMetadata, 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, DefaultRandomnessGenerator, DefaultRandomnessSource, DefaultSectionInformation, DefaultSummaryResult, DefinitionBaseDescription, DefinitionBaseDescriptionMetadata, DelayManager, DelayManagerCallbackSettings, Delegate_$type, DependencyObject, DependencyObjectNotifier, DependencyPropertiesCollection, DependencyProperty, DependencyPropertyChangedEventArgs, Description, DescriptionJsonValidator, DescriptionPath, DescriptionPathEvaluator, DescriptionPathEvaluatorResult, DescriptionPathIndexer, DescriptionPathOperatorType, DescriptionPathOperatorType_$type, DescriptionPathParser, DescriptionPathSegment, DescriptionPropertyValue, DescriptionRef, DescriptionRefTargetInfo, 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, DomainChartPlotAreaPointerEventArgsDescription, DomainChartPlotAreaPointerEventArgsDescriptionMetadata, DomainChartSeriesPointerEventArgsDescription, DomainChartSeriesPointerEventArgsDescriptionMetadata, DomainChartToolbarDescriptionModule, DotNetCodeGeneratingComponentRendererDataEmitter, DotNetCodeGeneratingComponentRendererHandlerEmitter, DotNetCodeGeneratingComponentRendererModuleEmitter, DotNetCodeGeneratingComponentRendererTemplateEmitter, 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, Ellipse, EllipseGeometry, EllipseGeometryData, EllipseVisualData, EmbeddedRefDescription, Encoding, EntityHandling, EntityHandling_$type, Enum, EnumBox, 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, FilterCellInfoDescription, FilterCellInfoDescriptionMetadata, FilterDialogRenderCompletedEventArgsDescription, FilterDialogRenderCompletedEventArgsDescriptionMetadata, FilterExpression, FilterExpressionCollection, FilterExpressionConversionVisitor, FilterExpressionDescription, FilterExpressionDescriptionMetadata, FilterExpressionEnvironment, FilterExpressionFunctionType, FilterExpressionFunctionType_$type, FilterExpressionOperatorType, FilterExpressionOperatorType_$type, FilterExpressionParsingHelper, FilterExpressionParsingResult, FilterExpressionVisitor, FilterExpressionWrapperType, FilterExpressionWrapperType_$type, FilterFactory, FilterOperandDescription, FilterOperandDescriptionMetadata, FilterOperandDescriptionModule, FilterRowDefinitionDescription, FilterRowDefinitionDescriptionMetadata, FilterRowDefinitionDescriptionModule, FilterStringErrorsParsingEventArgsDescription, FilterStringErrorsParsingEventArgsDescriptionMetadata, FilterSyntaxBinaryOperatorExpressionSyntax, FilterSyntaxExpressionSyntax, FilterSyntaxIdentifierExpressionSyntax, FilterSyntaxLexer, FilterSyntaxMemberExpressionSyntax, FilterSyntaxMethodCallExpressionSyntax, FilterSyntaxNullExpressionSyntax, FilterSyntaxParenthesisExpressionSyntax, FilterSyntaxParseResult, FilterSyntaxParser, FilterSyntaxPrimitiveValueExpressionSyntax, FilterSyntaxPrintingHelper, FilterSyntaxToken, FilterSyntaxTokenType_$type, FilterSyntaxUnaryOperatorExpressionSyntax, FilterSyntaxVisitor, 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, FlatDataProvider, FlatDataProviderJoinCollisionType, FlatDataProviderJoinCollisionType_$type, FlatDataProviderJoinType, FlatDataProviderJoinType_$type, FlatDataProviderTargetDataSourceNotifier, Flattener, FlattenerSettings, FocusEventArgs, FocusEventArgsDescription, FocusEventArgsDescriptionMetadata, FocusOptionsDescription, FocusOptionsDescriptionMetadata, FontDefaults, FontInfo, FontRegistry, FontUtil, ForceIndexIndicatorDescription, ForceIndexIndicatorDescriptionMetadata, ForceIndexIndicatorDescriptionModule, FormatCellEventArgsDescription, FormatCellEventArgsDescriptionMetadata, 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, FunnelChartSelectedItemsChangedEventArgsDescription, FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata, FunnelDataContextDescription, FunnelDataContextDescriptionMetadata, FunnelSliceClickedEventArgsDescription, FunnelSliceClickedEventArgsDescriptionMetadata, FunnelSliceDataContextDescription, FunnelSliceDataContextDescriptionMetadata, FunnelSliceEventArgsDescription, FunnelSliceEventArgsDescriptionMetadata, GC, GenericDataSourcePage, GenericDataSourceSchemaPropertyType, GenericDataSourceSchemaPropertyType_$type, GenericEnumerable$1, GenericEnumerator$1, GenericInternalVirtualDataProvider, GenericInternalVirtualDataSource, GenericPageResponse, GenericSectionInformation, GenericSummaryResult, GenericVirtualDataProviderWorker, GenericVirtualDataProviderWorkerSettings, GenericVirtualDataSource, GenericVirtualDataSourceDescription, GenericVirtualDataSourceDescriptionMetadata, GenericVirtualDataSourceDescriptionModule, GeographicContourLineSeriesDescription, GeographicContourLineSeriesDescriptionMetadata, GeographicContourLineSeriesDescriptionModule, GeographicHighDensityScatterSeriesDescription, GeographicHighDensityScatterSeriesDescriptionMetadata, GeographicHighDensityScatterSeriesDescriptionModule, GeographicMapCoreDescriptionModule, GeographicMapDashboardTileDescriptionModule, 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, GlobalAnimationState, GotFocusEventArgsDescription, GotFocusEventArgsDescriptionMetadata, GradientDirection, GradientDirection_$type, GradientStop, GradientStopAppearanceData, GridActiveCellChangedEventArgsDescription, GridActiveCellChangedEventArgsDescriptionMetadata, GridAnimationPhaseSettingsDescription, GridAnimationPhaseSettingsDescriptionMetadata, GridAnimationSettingsDescription, GridAnimationSettingsDescriptionMetadata, GridBridge, GridBridgeColumnDefinition, GridBridgeRowDefinition, GridCellEditEndedEventArgsDescription, GridCellEditEndedEventArgsDescriptionMetadata, GridCellEditStartedEventArgsDescription, GridCellEditStartedEventArgsDescriptionMetadata, GridCellEventArgsDescription, GridCellEventArgsDescriptionMetadata, GridCellPositionDescription, GridCellPositionDescriptionMetadata, GridCellPositionDescriptionModule, 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, GridCompoundConditionalStyleDescription, GridCompoundConditionalStyleDescriptionMetadata, GridConditionFilterStringErrorsParsingEventArgsDescription, GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata, GridConditionalStyleDescription, GridConditionalStyleDescriptionMetadata, GridConditionalStyleDescriptionModule, GridConditionalStyleFontInfoDescription, GridConditionalStyleFontInfoDescriptionMetadata, GridConditionalStyleFontInfoDescriptionModule, GridConditionalStylePropertyDescription, GridConditionalStylePropertyDescriptionMetadata, GridConditionalStylePropertyDescriptionModule, 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, HighlightState, HighlightState_$type, HighlightedValueDisplayMode, HighlightedValueDisplayMode_$type, HighlightedValueLabelMode, HighlightedValueLabelMode_$type, HighlightingData, HighlightingInfo, HighlightingInfoComparer, HighlightingInfoDescription, HighlightingInfoDescriptionMetadata, HighlightingManager, HighlightingState, HighlightingState_$type, HoleDimensionsChangedEventArgsDescription, HoleDimensionsChangedEventArgsDescriptionMetadata, HorizontalAlignment, HorizontalAlignment_$type, HorizontalAnchoredCategorySeriesDescription, HorizontalAnchoredCategorySeriesDescriptionMetadata, HorizontalAnchoredCategorySeriesProxyDescriptionModule, HorizontalRangeCategorySeriesDescription, HorizontalRangeCategorySeriesDescriptionMetadata, HorizontalRangeCategorySeriesProxyDescriptionModule, HorizontalStackedSeriesBaseDescription, HorizontalStackedSeriesBaseDescriptionMetadata, HttpRequestUtil, IAcceptsDataSeriesToDescriptionCustomizations_$type, IArrayList_$type, IArray_$type, IChartItemLegend_$type, IChartLegend_$type, IChartScaleLegend_$type, ICodeGenerationRendererTemplate_$type, ICollection$1_$type, ICollection_$type, ICommandAvailabilityListener_$type, ICommandStateChangedListener_$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, IDataSourceClonableDataProvider_$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, IFilterExpressionEnvironment_$type, IFilterExpression_$type, IFormatProvider_$type, IFormattable_$type, IFunctionFilterExpression_$type, IGetItemAtIndex_$type, IGrouping$2_$type, IHashPool$2_$type, IHighlightingManager_$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, INativeUIAbsolutePanelBridge_$type, INativeUIButtonGroupBridge_$type, INativeUICheckboxListBridge_$type, INativeUIColumnBridge_$type, INativeUIContainerBridge_$type, INativeUIContentBridge_$type, INativeUIElementBridge_$type, INativeUIElementFactory_$type, INativeUIGridBridge_$type, INativeUIInputBridge_$type, INativeUIPopupBridge_$type, INativeUIWindowBridge_$type, INotifyCollectionChanged_$type, INotifyPropertyChanged_$type, IOPath, IOnDemandRender_$type, IOperationFilterExpression_$type, IOrderedEnumerable$1_$type, IOverviewPlusDetailControl_$type, IOverviewPlusDetailPane_$type, IPageCandidatesSink_$type, IPermission_$type, IPlatformAPIHelperImpl_$type, IPool$1_$type, IPropertyReferenceFilterExpression_$type, IQueryProvider_$type, IQueryable$1_$type, IQueryable_$type, IRandomnessGenerator_$type, IRandomnessSource_$type, IRenderer_$type, IScaleLegendSeries_$type, ISchedulableRender_$type, IScrollerKeyboardListener_$type, IScrollerView_$type, ISectionInformation_$type, ISmartPlaceable_$type, ISummaryResult_$type, ISupportsAnimation_$type, ISupportsDataChangeNotifications_$type, ISupportsExpansionChangeNotifications_$type, ISupportsInput_$type, ITickProvider_$type, ITileGenerator_$type, ITileWorkCompletedSink_$type, IToolbarContextAccessor_$type, IToolbarTarget_$type, ITypeDescriptionPropertyTransforms_$type, IUnknownValuePlotting_$type, IVisualData_$type, IXmlLineInfo_$type, IXmlNamespaceResolver_$type, IZoomSlider_$type, IconDescription, IconDescriptionMetadata, IconDescriptionModule, IgCollection, IgEvent, IgcButtonBridge, IgcCheckboxBridge, IgcDropdownBridge, IgcIconButtonBridge, IgcInputBridge, IgcSliderBridge, IgxAsyncCompletedEventArgs, IgxBaseGenericDataSource, IgxCancelEventArgs, IgxCancellingMultiScaleImageEventArgs, IgxCaptureImageSettings, IgxChildContentComponent, IgxChildContentDynamicModule, IgxChildContentModule, IgxComponentRendererContainerComponent, IgxComponentRendererContainerDynamicModule, IgxComponentRendererContainerModule, IgxContentChildCollection, IgxDVInteractivityDynamicModule, IgxDVInteractivityModule, IgxDataContext, IgxDataLegendSeriesContext, IgxDataLegendSeriesValueInfo, IgxDataLegendSummaryColumn, IgxDataSeriesCollection, IgxDataSourceDataProviderSchemaChangedEventArgs, IgxDataSourceGroupDescription, IgxDataSourceGroupDescriptionCollection, IgxDataSourceGroupDescriptionDynamicModule, IgxDataSourceGroupDescriptionModule, IgxDataSourcePropertiesRequestedChangedEventArgs, IgxDataSourceRootSummariesChangedEventArgs, IgxDataSourceRowExpansionChangedEventArgs, IgxDataSourceSchemaChangedEventArgs, IgxDataSourceSortDescription, IgxDataSourceSortDescriptionCollection, IgxDataSourceSortDescriptionDynamicModule, IgxDataSourceSortDescriptionModule, IgxDataSourceSummaryDescription, IgxDataSourceSummaryDescriptionCollection, IgxDataSourceSummaryDescriptionDynamicModule, IgxDataSourceSummaryDescriptionModule, 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, IgxFocusEventArgs, IgxFormatSpecifier, IgxFormatSpecifierCollection, IgxFormatSpecifierDynamicModule, IgxFormatSpecifierModule, IgxGenericVirtualDataSource, IgxGenericVirtualDataSourceDynamicModule, IgxGenericVirtualDataSourceModule, IgxGetTileImageUriArgs, IgxHeatTileGenerator, IgxHeatTileGeneratorDynamicModule, IgxHeatTileGeneratorModule, IgxHighlightingInfo, IgxImageCapturedEventArgs, IgxKeyEventArgs, IgxLocalDataSourceDynamicModule, IgxLocalDataSourceModule, IgxNumberFormatSpecifier, IgxNumberFormatSpecifierDynamicModule, IgxNumberFormatSpecifierModule, IgxObjectCollection, IgxOnClosedEventArgs, IgxOnPopupEventArgs, IgxPageRequestedEventArgs, IgxPopupComponent, IgxPopupDynamicModule, IgxPopupMeasuringContentSizeEventArgs, IgxPopupModule, IgxPropertyUpdatedEventArgs, IgxProvideCalculatorEventArgs, IgxRectChangedEventArgs, IgxShapeDataSource, IgxShapeDataSourceDynamicModule, IgxShapeDataSourceModule, IgxShapeFilterRecordEventArgs, IgxShapefileRecord, IgxSimpleDefaultTooltipComponent, IgxStockChangedEventArgs, IgxStyle, IgxTemplateContentComponent, IgxTemplateContentDynamicModule, IgxTemplateContentModule, IgxToolCommandArgumentCollection, IgxTooltipContainerComponent, IgxTooltipContainerDynamicModule, IgxTooltipContainerModule, IgxTransactionState, IgxTriangulationDataSource, IgxTriangulationStatusEventArgs, IgxUploadDataCompletedEventArgs, IgxUploadStringCompletedEventArgs, Image, ImageCapturedEventArgs, ImageCapturedEventArgsDescription, ImageCapturedEventArgsDescriptionMetadata, 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, LayoutPrimaryKeyValueDescription, LayoutPrimaryKeyValueDescriptionMetadata, LayoutPrimaryKeyValueDescriptionModule, LeastSquaresFit, LeftClipper, LegendBaseDescription, LegendBaseDescriptionMetadata, LegendDescription, LegendDescriptionMetadata, LegendDescriptionModule, LegendEmptyValuesMode, LegendEmptyValuesMode_$type, LegendItemBadgeMode, LegendItemBadgeMode_$type, LegendItemBadgeShape, LegendItemBadgeShape_$type, LegendItemHelper, LegendMouseButtonEventArgsDescription, LegendMouseButtonEventArgsDescriptionMetadata, LegendMouseEventArgsDescription, LegendMouseEventArgsDescriptionMetadata, LegendTextContentChangedEventArgsDescription, LegendTextContentChangedEventArgsDescriptionMetadata, Line, LineEquation, LineFragmentDescription, LineFragmentDescriptionMetadata, LineFragmentDescriptionModule, LineGeometry, LineGeometryData, LineSegment, LineSegmentData, LineSeriesDescription, LineSeriesDescriptionMetadata, LineSeriesDescriptionModule, LineVisualData, LinearContourValueResolverDescription, LinearContourValueResolverDescriptionMetadata, LinearContourValueResolverDescriptionModule, LinearGaugeCoreDescriptionModule, LinearGaugeDashboardTileDescriptionModule, LinearGaugeDescription, LinearGaugeDescriptionMetadata, LinearGaugeDescriptionModule, LinearGradientBrush, LinearGradientBrushAppearanceData, LinearGraphRangeDescription, LinearGraphRangeDescriptionMetadata, LinearGraphRangeDescriptionModule, LinkedList$1, LinkedListNode$1, List$1, ListPanelActiveRowChangedEventArgsDescription, ListPanelActiveRowChangedEventArgsDescriptionMetadata, ListPanelContentRebindEventArgsDescription, ListPanelContentRebindEventArgsDescriptionMetadata, ListPanelContentRecycledEventArgsDescription, ListPanelContentRecycledEventArgsDescriptionMetadata, ListPanelContentRefreshedEventArgsDescription, ListPanelContentRefreshedEventArgsDescriptionMetadata, ListPanelDescription, ListPanelDescriptionMetadata, ListPanelDescriptionModule, ListPanelItemEventArgsDescription, ListPanelItemEventArgsDescriptionMetadata, ListPanelItemModelDescription, ListPanelItemModelDescriptionMetadata, ListPanelPrimaryKeyValueDescription, ListPanelPrimaryKeyValueDescriptionMetadata, ListPanelPrimaryKeyValueDescriptionModule, ListPanelSelectedItemsChangedEventArgsDescription, ListPanelSelectedItemsChangedEventArgsDescriptionMetadata, ListPanelSelectedKeysChangedEventArgsDescription, ListPanelSelectedKeysChangedEventArgsDescriptionMetadata, ListPanelSelectionChangedEventArgsDescription, ListPanelSelectionChangedEventArgsDescriptionMetadata, ListPanelTemplateHeightRequestedEventArgsDescription, ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata, ListPanelTemplateItemUpdatingEventArgsDescription, ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata, ListPanelTemplateWidthRequestedEventArgsDescription, ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata, 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, MultiSliderDescription, MultiSliderDescriptionMetadata, MultiSliderDescriptionModule, MultiSliderResolvingToolTipValueEventArgsDescription, MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata, MultiSliderThumbDescription, MultiSliderThumbDescriptionMetadata, MultiSliderThumbValueChangingEventArgsDescription, MultiSliderThumbValueChangingEventArgsDescriptionMetadata, MultiSliderTrackThumbRangeDescription, MultiSliderTrackThumbRangeDescriptionMetadata, MultiSliderYValueChangingEventArgsDescription, MultiSliderYValueChangingEventArgsDescriptionMetadata, NamePatcher, NameTable, NameTable_Entry, NameValueCollection, NamespaceHandling_$type, NativeUI, NativeUIAbsolutePanel, NativeUIAlignItems_$type, NativeUIBoxSizing_$type, NativeUIBuiltInEvents_$type, NativeUIBuiltInProperties_$type, NativeUIButton, NativeUIButtonClickedEventArgs, NativeUIButtonDisplayType_$type, NativeUIButtonGroup, NativeUIButtonGroupDisplayType_$type, NativeUIButtonGroupSelectionChangedEventArgs, NativeUICheckbox, NativeUICheckboxChangeEventArgs, NativeUICheckboxList, NativeUICheckboxListChangeEventArgs, NativeUICheckboxListIndexTypeChangedEventArgs, NativeUICheckboxListIndexType_$type, NativeUICheckboxListKeysClearedEventArgs, NativeUIChildren, NativeUIClickedEventArgs, NativeUIColorEditor, NativeUIColorEditorValueChangedEventArgs, NativeUIColumn, NativeUICombo, NativeUIComboSelectedItemsChangedEventArgs, NativeUIComponent, NativeUIComponentBuiltInType_$type, NativeUIComponentHorizontalAlignment_$type, NativeUIComponentVerticalAlignment_$type, NativeUIContainer, NativeUIContent, NativeUICursor_$type, NativeUIDisplayDensity_$type, NativeUIDropDown, NativeUIDropDownSelectedValueChangedEventArgs, NativeUIElementBridge, NativeUIElementFactoryFlavor, NativeUIElementFactoryFlavor_$type, NativeUIFocusEventArgs, NativeUIGrid, NativeUIGridHeightType_$type, NativeUIGridWidthType_$type, NativeUIIcon, NativeUIIconButton, NativeUIInput, NativeUIInputChangingEventArgs, NativeUIInputDisplayType_$type, NativeUIInputType_$type, NativeUIInputsFactory, NativeUIKeyEventArgs, NativeUILabel, NativeUIMouseEventArgs, NativeUIPlaceContent_$type, NativeUIPopup, NativeUIPopupAlignment_$type, NativeUIPopupAnimationType_$type, NativeUIPopupClosedEventArgs, NativeUIPopupDirection_$type, NativeUIPopupMeasuringContentEventArgs, NativeUIPopupOpenedEventArgs, NativeUIPopupPointerPosition_$type, NativeUIPositionChangedEventArgs, NativeUISizeChangedEventArgs, NativeUISlider, NativeUISliderOrientation_$type, NativeUISliderValueChangedEventArgs, NativeUIWindow, NeedleBeingDragged, NeedleBeingDragged_$type, 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, OnClosedEventArgs, OnClosedEventArgsDescription, OnClosedEventArgsDescriptionMetadata, OnCollapsedEventArgsDescription, OnCollapsedEventArgsDescriptionMetadata, OnExpandedEventArgsDescription, OnExpandedEventArgsDescriptionMetadata, OnPopupEventArgs, OnPopupEventArgsDescription, OnPopupEventArgsDescriptionMetadata, OpenStreetMapImageryDescription, OpenStreetMapImageryDescriptionMetadata, OpenStreetMapImageryDescriptionModule, OpenStreetMapTileSource, OperationFilterExpression, OperationFilterExpressionDescription, OperationFilterExpressionDescriptionMetadata, OperatorSelectorClosingEventArgsDescription, OperatorSelectorClosingEventArgsDescriptionMetadata, OperatorSelectorOpeningEventArgsDescription, OperatorSelectorOpeningEventArgsDescriptionMetadata, OperatorSelectorValueChangedEventArgsDescription, OperatorSelectorValueChangedEventArgsDescriptionMetadata, OrdinalTimeXAxisDescription, OrdinalTimeXAxisDescriptionMetadata, OrdinalTimeXAxisDescriptionModule, OthersCategoryContextDescription, OthersCategoryContextDescriptionMetadata, OthersCategoryContextDescriptionModule, OthersCategoryType, OthersCategoryType_$type, OverlayProxyDescriptionModule, OverlayTextInfoDescription, OverlayTextInfoDescriptionMetadata, OverlayTextUpdatingEventArgsDescription, OverlayTextUpdatingEventArgsDescriptionMetadata, OverlaysDescriptionModule, PageChangedEventArgsDescription, PageChangedEventArgsDescriptionMetadata, PagePredictionEngine, PageRequestedEventArgs, PageRequestedEventArgsDescription, PageRequestedEventArgsDescriptionMetadata, PagedDataSource, PagedDataSourceDescription, PagedDataSourceDescriptionMetadata, Pair$2, Panel, PanelBridge, 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, PieChartDashboardTileDescriptionModule, PieChartDescription, PieChartDescriptionMetadata, PieChartDescriptionModule, PieSliceCollisionGeometry, PieSliceDataContextDescription, PieSliceDataContextDescriptionMetadata, PieSliceOthersContextDescription, PieSliceOthersContextDescriptionMetadata, PinnedAreaSeparatorDescription, PinnedAreaSeparatorDescriptionMetadata, PinnedAreaSeparatorDescriptionModule, PlatformAPIHelper, 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, Popup, PopupAlignment, PopupAlignment_$type, PopupAnimation, PopupAnimationType, PopupAnimationType_$type, PopupDescription, PopupDescriptionMetadata, PopupDescriptionModule, PopupDirection, PopupDirection_$type, PopupMeasuringContentSizeEventArgs, PopupMeasuringContentSizeEventArgsDescription, PopupMeasuringContentSizeEventArgsDescriptionMetadata, PopupPointerPosition, PopupPointerPosition_$type, PopupView, PopupVisualModelExport, Popup_InnerAnimationInfo, Popup_OuterAnimationInfo, PortalManager, PositiveVolumeIndexIndicatorDescription, PositiveVolumeIndexIndicatorDescriptionMetadata, PositiveVolumeIndexIndicatorDescriptionModule, PredictionEnginePageCandidate, PrefixDescription, PrefixDescriptionMetadata, PrefixDescriptionModule, PriceChannelOverlayDescription, PriceChannelOverlayDescriptionMetadata, PriceChannelOverlayDescriptionModule, PriceVolumeTrendIndicatorDescription, PriceVolumeTrendIndicatorDescriptionMetadata, PriceVolumeTrendIndicatorDescriptionModule, PrimaryKeyValueDescription, PrimaryKeyValueDescriptionMetadata, PrimaryKeyValueDescriptionModule, PrimitiveAppearanceData, PrimitiveVisualData, PrimitiveVisualDataList, PriorityDataRule, ProgressiveLoadStatusEventArgsDescription, ProgressiveLoadStatusEventArgsDescriptionMetadata, PromiseFactory, PromiseWrapper, PropertyChangedEventArgs, PropertyChangedEventArgs$1, PropertyEditorDataSourceDescription, PropertyEditorDataSourceDescriptionMetadata, PropertyEditorDescription, PropertyEditorDescriptionMetadata, PropertyEditorDescriptionModule, PropertyEditorDescriptionObjectDescription, PropertyEditorDescriptionObjectDescriptionMetadata, PropertyEditorPanelDescription, PropertyEditorPanelDescriptionMetadata, PropertyEditorPanelDescriptionModule, PropertyEditorPropertyDescriptionButtonClickEventArgsDescription, PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionChangedEventArgsDescription, PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription, PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionDescription, PropertyEditorPropertyDescriptionDescriptionMetadata, PropertyEditorPropertyDescriptionDescriptionModule, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata, PropertyMetadata, PropertyPath, PropertyReferenceFilterExpression, PropertyReferenceFilterExpressionDescription, PropertyReferenceFilterExpressionDescriptionMetadata, PropertyUpdatedEventArgs, PropertyUpdatedEventArgsDescription, PropertyUpdatedEventArgsDescriptionMetadata, ProportionalCategoryAngleAxisDescription, ProportionalCategoryAngleAxisDescriptionMetadata, ProportionalCategoryAngleAxisDescriptionModule, 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, RadialBaseChartDescription, RadialBaseChartDescriptionMetadata, RadialBaseDescription, RadialBaseDescriptionMetadata, RadialColumnSeriesDescription, RadialColumnSeriesDescriptionMetadata, RadialColumnSeriesDescriptionModule, RadialGaugeCoreDescriptionModule, RadialGaugeDashboardTileDescriptionModule, RadialGaugeDescription, RadialGaugeDescriptionMetadata, RadialGaugeDescriptionModule, RadialGaugeRangeDescription, RadialGaugeRangeDescriptionMetadata, RadialGaugeRangeDescriptionModule, RadialLabelMode, RadialLabelMode_$type, RadialLineSeriesDescription, RadialLineSeriesDescriptionMetadata, RadialLineSeriesDescriptionModule, RadialPieSeriesDescription, RadialPieSeriesDescriptionMetadata, RadialPieSeriesDescriptionModule, Random, RangeAreaSeriesDescription, RangeAreaSeriesDescriptionMetadata, RangeAreaSeriesDescriptionModule, RangeCategorySeriesDescription, RangeCategorySeriesDescriptionMetadata, RangeColumnSeriesDescription, RangeColumnSeriesDescriptionMetadata, RangeColumnSeriesDescriptionModule, RateOfChangeAndMomentumIndicatorDescription, RateOfChangeAndMomentumIndicatorDescriptionMetadata, RateOfChangeAndMomentumIndicatorDescriptionModule, ReactCodeBehindCodeGeneratingComponentRendererCodeEmitter, ReactMarkupCodeGeneratingComponentRendererCodeEmitter, ReadOnlyCollection$1, ReadOnlyDoubleCollection, 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, SVGAttributeType_$type, SVGBrush, SVGBrushType_$type, SVGCircle, SVGEllipse, SVGGroup, SVGLine, SVGNode, SVGNodeType_$type, SVGParser, SVGPath, SVGPresentationNode, SVGRect, SVGRoot, ScaleLegendDescription, ScaleLegendDescriptionMetadata, ScaleLegendDescriptionModule, ScaleTransform, ScalerParamsDescription, ScalerParamsDescriptionMetadata, ScalerVisibleBounds, ScatterAreaSeriesDescription, ScatterAreaSeriesDescriptionMetadata, ScatterAreaSeriesDescriptionModule, ScatterBaseDescription, ScatterBaseDescriptionMetadata, ScatterContourSeriesDescription, ScatterContourSeriesDescriptionMetadata, ScatterContourSeriesDescriptionModule, ScatterDataInfo, ScatterDataRule, ScatterLineSeriesDescription, ScatterLineSeriesDescriptionMetadata, ScatterLineSeriesDescriptionModule, ScatterPolygonSeriesDescription, ScatterPolygonSeriesDescriptionMetadata, ScatterPolygonSeriesDescriptionModule, ScatterPolylineSeriesDescription, ScatterPolylineSeriesDescriptionMetadata, ScatterPolylineSeriesDescriptionModule, ScatterSeriesDescription, ScatterSeriesDescriptionMetadata, ScatterSeriesDescriptionModule, ScatterSplineSeriesDescription, ScatterSplineSeriesDescriptionMetadata, ScatterSplineSeriesDescriptionModule, ScatterTriangulationSeriesDescription, ScatterTriangulationSeriesDescriptionMetadata, ScatterType_$type, SchedulableRenderWrapper, ScrollbarStyle, 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, SeriesDescription, SeriesDescriptionMetadata, SeriesHighlightedValuesDisplayMode, SeriesHighlightedValuesDisplayMode_$type, SeriesLayerDescription, SeriesLayerDescriptionMetadata, SeriesLayerPropertyOverlayDescription, SeriesLayerPropertyOverlayDescriptionMetadata, SeriesLayerPropertyOverlayValueResolvingEventArgsDescription, SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata, SeriesMatcherDescription, SeriesMatcherDescriptionMetadata, SeriesMatcherDescriptionModule, SeriesViewerDescription, SeriesViewerDescriptionMetadata, SeriesViewerManipulationEventArgsDescription, SeriesViewerManipulationEventArgsDescriptionMetadata, SeriesViewerSelectedSeriesItemsChangedEventArgsDescription, SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata, SeriesViewerSelectedSeriesItemsChangingEventArgsDescription, SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata, Shape, ShapeChartUtils, ShapeDataInfo, ShapeDataRule, ShapeDataSourceDescription, ShapeDataSourceDescriptionMetadata, ShapeDataSourceDescriptionModule, ShapeFileUtil, ShapeFilterRecordEventArgs, ShapeFilterRecordEventArgsDescription, ShapeFilterRecordEventArgsDescriptionMetadata, ShapeSeriesBaseDescription, ShapeSeriesBaseDescriptionMetadata, ShapeTags, ShapeType, ShapeType_$type, ShapefileConverter, ShapefileRecord, ShapefileRecordDescription, ShapefileRecordDescriptionMetadata, SimpleCategorySeriesRule, SimpleDefaultTooltipDescriptionMetadata, SimpleDefaultTooltipExtendedDescriptionMetadata, SimpleFinancialPriceSeriesRule, SimpleGaugeRule, SimplePieSeriesRule, SimpleScatterSeriesRule, Size, SizeData, SizeDescription, SizeScaleDescription, SizeScaleDescriptionMetadata, SizeScaleDescriptionModule, SliceClickEventArgsDescription, SliceClickEventArgsDescriptionMetadata, SliceEventArgsDescription, SliceEventArgsDescriptionMetadata, SlowStochasticOscillatorIndicatorDescription, SlowStochasticOscillatorIndicatorDescriptionMetadata, SlowStochasticOscillatorIndicatorDescriptionModule, SmartPlaceableWrapper$1, SmartPlacer, SmartPosition, SmartPosition_$type, SolidBrushAppearanceData, SortDescription, SortDescriptionCollection, SortGroupParser, 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, 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, SummaryParser, SummaryRowDescription, SummaryRowDescriptionMetadata, SummaryRowRootDescription, SummaryRowRootDescriptionMetadata, SummaryRowRootDescriptionModule, SummaryRowSectionDescription, SummaryRowSectionDescriptionMetadata, SummaryRowSectionDescriptionModule, SvgIconCollection, SvgIconRegistry, SweepDirection, SweepDirection_$type, SyncableObservableCollection$1, SyncableObservableCollection$2, SyncableObservableCollectionChangedListener_$type, SynchronizedReader, SynchronizedWriter, SystemException, TRIXIndicatorDescription, TRIXIndicatorDescriptionMetadata, TRIXIndicatorDescriptionModule, TSCodeGeneratingComponentRendererDataEmitter, TSCodeGeneratingComponentRendererHandlerEmitter, TSCodeGeneratingComponentRendererModuleEmitter, TSCodeGeneratingComponentRendererTemplateEmitter, Task, Task$1, TaskCompletionSource$1, TaskFactory, TaskStatus, TaskStatus_$type, TemplateCellInfoDescription, TemplateCellInfoDescriptionMetadata, TemplateCellUpdatingEventArgsDescription, TemplateCellUpdatingEventArgsDescriptionMetadata, TemplateColumnDescription, TemplateColumnDescriptionMetadata, TemplateColumnDescriptionModule, TemplateContainerDescriptionModule, TemplateContentDescriptionModule, TemplateContentExtendedDescriptionModule, TemplateHeaderCellInfoDescription, TemplateHeaderCellInfoDescriptionMetadata, TemplateHeaderCellUpdatingEventArgsDescription, TemplateHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateHeaderDescription, TemplateHeaderDescriptionMetadata, TemplateHeaderDescriptionModule, TemplateSectionHeaderCellInfoDescription, TemplateSectionHeaderCellInfoDescriptionMetadata, TemplateSectionHeaderCellUpdatingEventArgsDescription, TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateSectionHeaderDescription, TemplateSectionHeaderDescriptionMetadata, TemplateSectionHeaderDescriptionModule, TestFilterSyntaxVisitor, TestRandomness, TextBlock, TextCellInfoDescription, TextCellInfoDescriptionMetadata, TextColumnDescription, TextColumnDescriptionMetadata, TextColumnDescriptionModule, TextFontMetrics, TextHeaderCellInfoDescription, TextHeaderCellInfoDescriptionMetadata, TextHeaderDescription, TextHeaderDescriptionMetadata, TextHeaderDescriptionModule, TextIconSetConditionalStyleDescription, TextIconSetConditionalStyleDescriptionMetadata, TextIconSetConditionalStyleDescriptionModule, 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, ToolActionButtonDescription, ToolActionButtonDescriptionMetadata, ToolActionButtonDescriptionModule, ToolActionButtonInfo, ToolActionButtonInfoDescription, ToolActionButtonInfoDescriptionMetadata, ToolActionButtonInfoDisplayType, ToolActionButtonInfoDisplayType_$type, ToolActionButtonPairDescription, ToolActionButtonPairDescriptionMetadata, ToolActionButtonPairDescriptionModule, ToolActionButtonPairInfo, ToolActionButtonPairInfoDescription, ToolActionButtonPairInfoDescriptionMetadata, ToolActionCheckboxDescription, ToolActionCheckboxDescriptionMetadata, ToolActionCheckboxDescriptionModule, ToolActionCheckboxInfo, ToolActionCheckboxInfoDescription, ToolActionCheckboxInfoDescriptionMetadata, ToolActionCheckboxListDescription, ToolActionCheckboxListDescriptionMetadata, ToolActionCheckboxListDescriptionModule, ToolActionCheckboxListInfo, ToolActionCheckboxListInfoDescription, ToolActionCheckboxListInfoDescriptionMetadata, ToolActionColorEditorDescription, ToolActionColorEditorDescriptionMetadata, ToolActionColorEditorDescriptionModule, ToolActionColorEditorInfo, ToolActionColorEditorInfoDescription, ToolActionColorEditorInfoDescriptionMetadata, ToolActionComboDescription, ToolActionComboDescriptionMetadata, ToolActionComboDescriptionModule, ToolActionComboInfo, ToolActionComboInfoDescription, ToolActionComboInfoDescriptionMetadata, ToolActionDescription, ToolActionDescriptionMetadata, ToolActionEventDetailDescription, ToolActionEventDetailDescriptionMetadata, ToolActionFieldSelectorAggregationDescription, ToolActionFieldSelectorAggregationDescriptionMetadata, ToolActionFieldSelectorAggregationDescriptionModule, ToolActionFieldSelectorDescription, ToolActionFieldSelectorDescriptionMetadata, ToolActionFieldSelectorDescriptionModule, ToolActionFieldSelectorInfo, ToolActionFieldSelectorInfoDescription, ToolActionFieldSelectorInfoDescriptionMetadata, ToolActionFieldSelectorInfoType, ToolActionFieldSelectorInfoType_$type, ToolActionFieldSelectorSelectedAggregationDescription, ToolActionFieldSelectorSelectedAggregationDescriptionMetadata, ToolActionFieldSelectorSelectedAggregationDescriptionModule, ToolActionGroupHeaderDescription, ToolActionGroupHeaderDescriptionMetadata, ToolActionGroupHeaderDescriptionModule, ToolActionGroupHeaderInfo, ToolActionGroupHeaderInfoDescription, ToolActionGroupHeaderInfoDescriptionMetadata, ToolActionIconButtonDescription, ToolActionIconButtonDescriptionMetadata, ToolActionIconButtonDescriptionModule, ToolActionIconButtonInfo, ToolActionIconButtonInfoDescription, ToolActionIconButtonInfoDescriptionMetadata, ToolActionIconMenuDescription, ToolActionIconMenuDescriptionMetadata, ToolActionIconMenuDescriptionModule, ToolActionIconMenuInfo, ToolActionIconMenuInfoDescription, ToolActionIconMenuInfoDescriptionMetadata, ToolActionInfo, ToolActionInfoDensity, ToolActionInfoDensity_$type, ToolActionInfoDescription, ToolActionInfoDescriptionMetadata, ToolActionLabelDescription, ToolActionLabelDescriptionMetadata, ToolActionLabelDescriptionModule, ToolActionLabelInfo, ToolActionLabelInfoDescription, ToolActionLabelInfoDescriptionMetadata, ToolActionNumberInputDescription, ToolActionNumberInputDescriptionMetadata, ToolActionNumberInputDescriptionModule, ToolActionNumberInputInfo, ToolActionNumberInputInfoDescription, ToolActionNumberInputInfoDescriptionMetadata, ToolActionPerformedEventArgsDescription, ToolActionPerformedEventArgsDescriptionMetadata, ToolActionPopupOpeningEventArgsDescription, ToolActionPopupOpeningEventArgsDescriptionMetadata, ToolActionRadioDescription, ToolActionRadioDescriptionMetadata, ToolActionRadioDescriptionModule, ToolActionRadioInfo, ToolActionRadioInfoDescription, ToolActionRadioInfoDescriptionMetadata, ToolActionSeparatorDescription, ToolActionSeparatorDescriptionMetadata, ToolActionSeparatorDescriptionModule, ToolActionSeparatorInfo, ToolActionSeparatorInfoDescription, ToolActionSeparatorInfoDescriptionMetadata, ToolActionSubPanelDescription, ToolActionSubPanelDescriptionMetadata, ToolActionSubPanelDescriptionModule, ToolActionSubPanelInfo, ToolActionSubPanelInfoDescription, ToolActionSubPanelInfoDescriptionMetadata, ToolActionTextInputDescription, ToolActionTextInputDescriptionMetadata, ToolActionTextInputDescriptionModule, ToolActionTextInputInfo, ToolActionTextInputInfoDescription, ToolActionTextInputInfoDescriptionMetadata, ToolActionType, ToolActionType_$type, ToolCommand, ToolCommandArgument, ToolCommandArgumentCollection, ToolCommandArgumentDescription, ToolCommandArgumentDescriptionMetadata, ToolCommandDescription, ToolCommandDescriptionMetadata, ToolCommandEventArgsDescription, ToolCommandEventArgsDescriptionMetadata, ToolCommandExecutionState, ToolCommandExecutionState_$type, ToolCommandStateChanged, ToolCommandStateType, ToolCommandStateType_$type, ToolContextBindingDescription, ToolContextBindingDescriptionMetadata, ToolContextBindingInfo, ToolContextBindingInfoDescription, ToolContextBindingInfoDescriptionMetadata, ToolContextBindingMode, ToolContextBindingMode_$type, ToolContextValueType, ToolContextValueType_$type, ToolPanelContentRefreshedEventArgsDescription, ToolPanelContentRefreshedEventArgsDescriptionMetadata, ToolPanelContextChangedEventArgsDescription, ToolPanelContextChangedEventArgsDescriptionMetadata, ToolPanelDescription, ToolPanelDescriptionMetadata, ToolPanelDescriptionModule, ToolbarDescription, ToolbarDescriptionMetadata, ToolbarDescriptionModule, ToolbarSubMenuClosingEventArgsDescription, ToolbarSubMenuClosingEventArgsDescriptionMetadata, ToolbarSubMenuOpeningEventArgsDescription, ToolbarSubMenuOpeningEventArgsDescriptionMetadata, 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, TransitionOutCompletedEventArgsDescription, TransitionOutCompletedEventArgsDescriptionMetadata, TranslateTransform, TreemapDescription, TreemapDescriptionMetadata, TreemapDescriptionModule, TreemapNodePointerEventArgsDescription, TreemapNodePointerEventArgsDescriptionMetadata, TreemapNodeStyleDescription, TreemapNodeStyleDescriptionMetadata, TreemapNodeStyleDescriptionModule, TreemapNodeStyleMappingDescription, TreemapNodeStyleMappingDescriptionMetadata, TreemapNodeStyleMappingDescriptionModule, TreemapNodeStylingEventArgsDescription, TreemapNodeStylingEventArgsDescriptionMetadata, TrendCalculators, TrendLineLayerDescription, TrendLineLayerDescriptionMetadata, TrendLineLayerDescriptionModule, 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, ValueLayerDescription, ValueLayerDescriptionMetadata, ValueLayerDescriptionModule, ValueOverlayDescription, ValueOverlayDescriptionMetadata, ValueOverlayDescriptionModule, ValueType, VersionQueueAction, VersionQueueActionTimeout, VersionQueueHelper, 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, WebAccordionDescription, WebAccordionDescriptionMetadata, WebAccordionDescriptionModule, WebActionStripDescription, WebActionStripDescriptionMetadata, WebActionStripDescriptionModule, WebActionStripResourceStringsDescription, WebActionStripResourceStringsDescriptionMetadata, WebActiveNodeChangeEventArgsDescription, WebActiveNodeChangeEventArgsDescriptionMetadata, WebActiveNodeChangeEventArgsDetailDescription, WebActiveNodeChangeEventArgsDetailDescriptionMetadata, WebActivePaneEventArgsDescription, WebActivePaneEventArgsDescriptionMetadata, WebActivePaneEventArgsDetailDescription, WebActivePaneEventArgsDetailDescriptionMetadata, WebActiveStepChangedEventArgsDescription, WebActiveStepChangedEventArgsDescriptionMetadata, WebActiveStepChangedEventArgsDetailDescription, WebActiveStepChangedEventArgsDetailDescriptionMetadata, WebActiveStepChangingEventArgsDescription, WebActiveStepChangingEventArgsDescriptionMetadata, WebActiveStepChangingEventArgsDetailDescription, WebActiveStepChangingEventArgsDetailDescriptionMetadata, WebAvatarDescription, WebAvatarDescriptionMetadata, WebAvatarDescriptionModule, WebBadgeDescription, WebBadgeDescriptionMetadata, WebBadgeDescriptionModule, WebBannerDescription, WebBannerDescriptionMetadata, WebBannerDescriptionModule, WebBaseAlertLikeDescription, WebBaseAlertLikeDescriptionMetadata, WebBaseAlertLikeDescriptionModule, WebBaseComboBoxLikeDescription, WebBaseComboBoxLikeDescriptionMetadata, WebBaseComboBoxLikeDescriptionModule, WebBaseDateTimeFilteringOperandDescription, WebBaseDateTimeFilteringOperandDescriptionMetadata, WebBaseEventArgsDescription, WebBaseEventArgsDescriptionMetadata, WebBaseEventArgsDetailDescription, WebBaseEventArgsDetailDescriptionMetadata, WebBaseExporterDescription, WebBaseExporterDescriptionMetadata, WebBaseOptionLikeDescription, WebBaseOptionLikeDescriptionMetadata, WebBaseOptionLikeDescriptionModule, WebBaseSearchInfoDescription, WebBaseSearchInfoDescriptionMetadata, WebBaseToolbarColumnActionsDirectiveDescription, WebBaseToolbarColumnActionsDirectiveDescriptionMetadata, WebBaseToolbarColumnActionsDirectiveDescriptionModule, WebBaseToolbarDirectiveDescription, WebBaseToolbarDirectiveDescriptionMetadata, WebBooleanFilteringOperandDescription, WebBooleanFilteringOperandDescriptionMetadata, WebButtonBaseDescription, WebButtonBaseDescriptionMetadata, WebButtonBaseDescriptionModule, WebButtonDescription, WebButtonDescriptionMetadata, WebButtonDescriptionModule, WebButtonGroupDescription, WebButtonGroupDescriptionMetadata, WebButtonGroupDescriptionModule, WebCalendarBaseDescription, WebCalendarBaseDescriptionMetadata, WebCalendarBaseDescriptionModule, WebCalendarDateEventArgsDescription, WebCalendarDateEventArgsDescriptionMetadata, WebCalendarDescription, WebCalendarDescriptionMetadata, WebCalendarDescriptionModule, WebCalendarResourceStringsDescription, WebCalendarResourceStringsDescriptionMetadata, WebCancelableBrowserEventArgsDescription, WebCancelableBrowserEventArgsDescriptionMetadata, WebCancelableBrowserEventArgsDetailDescription, WebCancelableBrowserEventArgsDetailDescriptionMetadata, WebCancelableEventArgsDescription, WebCancelableEventArgsDescriptionMetadata, WebCancelableEventArgsDetailDescription, WebCancelableEventArgsDetailDescriptionMetadata, WebCardActionsDescription, WebCardActionsDescriptionMetadata, WebCardActionsDescriptionModule, WebCardContentDescription, WebCardContentDescriptionMetadata, WebCardContentDescriptionModule, WebCardDescription, WebCardDescriptionMetadata, WebCardDescriptionModule, WebCardHeaderDescription, WebCardHeaderDescriptionMetadata, WebCardHeaderDescriptionModule, WebCardMediaDescription, WebCardMediaDescriptionMetadata, WebCardMediaDescriptionModule, WebCarouselDescription, WebCarouselDescriptionMetadata, WebCarouselDescriptionModule, WebCarouselIndicatorDescription, WebCarouselIndicatorDescriptionMetadata, WebCarouselIndicatorDescriptionModule, WebCarouselSlideDescription, WebCarouselSlideDescriptionMetadata, WebCarouselSlideDescriptionModule, WebCellPositionDescription, WebCellPositionDescriptionMetadata, WebCellTemplateContextDescription, WebCellTemplateContextDescriptionMetadata, WebCellTypeDescription, WebCellTypeDescriptionMetadata, WebCheckboxBaseDescription, WebCheckboxBaseDescriptionMetadata, WebCheckboxBaseDescriptionModule, WebCheckboxChangeEventArgsDescription, WebCheckboxChangeEventArgsDescriptionMetadata, WebCheckboxChangeEventArgsDetailDescription, WebCheckboxChangeEventArgsDetailDescriptionMetadata, WebCheckboxDescription, WebCheckboxDescriptionMetadata, WebCheckboxDescriptionModule, WebChipDescription, WebChipDescriptionMetadata, WebChipDescriptionModule, WebCircularGradientDescription, WebCircularGradientDescriptionMetadata, WebCircularGradientDescriptionModule, WebCircularProgressDescription, WebCircularProgressDescriptionMetadata, WebCircularProgressDescriptionModule, WebClient, WebClipboardOptionsDescription, WebClipboardOptionsDescriptionMetadata, WebCodeBehindCodeGeneratingComponentRendererCodeEmitter, WebColumnComponentEventArgsDescription, WebColumnComponentEventArgsDescriptionMetadata, WebColumnDescription, WebColumnDescriptionMetadata, WebColumnDescriptionModule, WebColumnEditorOptionsDescription, WebColumnEditorOptionsDescriptionMetadata, WebColumnExportingEventArgsDescription, WebColumnExportingEventArgsDescriptionMetadata, WebColumnExportingEventArgsDetailDescription, WebColumnExportingEventArgsDetailDescriptionMetadata, WebColumnGroupDescription, WebColumnGroupDescriptionMetadata, WebColumnGroupDescriptionModule, WebColumnLayoutDescription, WebColumnLayoutDescriptionMetadata, WebColumnLayoutDescriptionModule, WebColumnMovingEndEventArgsDescription, WebColumnMovingEndEventArgsDescriptionMetadata, WebColumnMovingEndEventArgsDetailDescription, WebColumnMovingEndEventArgsDetailDescriptionMetadata, WebColumnMovingEventArgsDescription, WebColumnMovingEventArgsDescriptionMetadata, WebColumnMovingEventArgsDetailDescription, WebColumnMovingEventArgsDetailDescriptionMetadata, WebColumnMovingStartEventArgsDescription, WebColumnMovingStartEventArgsDescriptionMetadata, WebColumnMovingStartEventArgsDetailDescription, WebColumnMovingStartEventArgsDetailDescriptionMetadata, WebColumnPipeArgsDescription, WebColumnPipeArgsDescriptionMetadata, WebColumnResizeEventArgsDescription, WebColumnResizeEventArgsDescriptionMetadata, WebColumnResizeEventArgsDetailDescription, WebColumnResizeEventArgsDetailDescriptionMetadata, WebColumnSelectionEventArgsDescription, WebColumnSelectionEventArgsDescriptionMetadata, WebColumnSelectionEventArgsDetailDescription, WebColumnSelectionEventArgsDetailDescriptionMetadata, WebColumnStateDescription, WebColumnStateDescriptionMetadata, WebColumnTemplateContextDescription, WebColumnTemplateContextDescriptionMetadata, WebColumnToggledEventArgsDescription, WebColumnToggledEventArgsDescriptionMetadata, WebColumnToggledEventArgsDetailDescription, WebColumnToggledEventArgsDetailDescriptionMetadata, WebColumnVisibilityChangedEventArgsDescription, WebColumnVisibilityChangedEventArgsDescriptionMetadata, WebColumnVisibilityChangedEventArgsDetailDescription, WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata, WebColumnVisibilityChangingEventArgsDescription, WebColumnVisibilityChangingEventArgsDescriptionMetadata, WebColumnVisibilityChangingEventArgsDetailDescription, WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata, WebColumnsAutoGeneratedEventArgsDescription, WebColumnsAutoGeneratedEventArgsDescriptionMetadata, WebColumnsAutoGeneratedEventArgsDetailDescription, WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata, WebComboChangeEventArgsDescription, WebComboChangeEventArgsDescriptionMetadata, WebComboChangeEventArgsDetailDescription, WebComboChangeEventArgsDetailDescriptionMetadata, WebComboDescription, WebComboDescriptionMetadata, WebComboDescriptionModule, WebComponentArrayDataValueChangedEventArgsDescription, WebComponentArrayDataValueChangedEventArgsDescriptionMetadata, WebComponentBoolValueChangedEventArgsDescription, WebComponentBoolValueChangedEventArgsDescriptionMetadata, WebComponentDataValueChangedEventArgsDescription, WebComponentDataValueChangedEventArgsDescriptionMetadata, WebComponentDateValueChangedEventArgsDescription, WebComponentDateValueChangedEventArgsDescriptionMetadata, WebComponentValueChangedEventArgsDescription, WebComponentValueChangedEventArgsDescriptionMetadata, WebComponentsCodeBehindCodeGeneratingComponentRendererCodeEmitter, WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter, WebContentPaneDescription, WebContentPaneDescriptionMetadata, WebContentPaneDescriptionModule, WebDataCloneStrategyDescription, WebDataCloneStrategyDescriptionMetadata, WebDateFilteringOperandDescription, WebDateFilteringOperandDescriptionMetadata, WebDatePickerDescription, WebDatePickerDescriptionMetadata, WebDatePickerDescriptionModule, WebDateSummaryOperandDescription, WebDateSummaryOperandDescriptionMetadata, WebDateTimeFilteringOperandDescription, WebDateTimeFilteringOperandDescriptionMetadata, WebDateTimeInputDescription, WebDateTimeInputDescriptionMetadata, WebDateTimeInputDescriptionModule, WebDialogDescription, WebDialogDescriptionMetadata, WebDialogDescriptionModule, WebDimensionsChangeDescription, WebDimensionsChangeDescriptionMetadata, WebDimensionsChangeDetailDescription, WebDimensionsChangeDetailDescriptionMetadata, WebDimensionsChangeEventArgsDescription, WebDimensionsChangeEventArgsDescriptionMetadata, WebDividerDescription, WebDividerDescriptionMetadata, WebDividerDescriptionModule, WebDockManagerDescription, WebDockManagerDescriptionMetadata, WebDockManagerDescriptionModule, WebDockManagerLayoutDescription, WebDockManagerLayoutDescriptionMetadata, WebDockManagerLayoutDescriptionModule, WebDockManagerPaneDescription, WebDockManagerPaneDescriptionMetadata, WebDockManagerPointDescription, WebDockManagerPointDescriptionMetadata, WebDockManagerPointDescriptionModule, WebDockManagerResourceStringsDescription, WebDockManagerResourceStringsDescriptionMetadata, WebDockPaneActionDescription, WebDockPaneActionDescriptionMetadata, WebDockingIndicatorDescription, WebDockingIndicatorDescriptionMetadata, WebDocumentHostDescription, WebDocumentHostDescriptionMetadata, WebDocumentHostDescriptionModule, WebDragServiceDescription, WebDragServiceDescriptionMetadata, WebDragServiceDescriptionModule, WebDropdownDescription, WebDropdownDescriptionMetadata, WebDropdownDescriptionModule, WebDropdownGroupDescription, WebDropdownGroupDescriptionMetadata, WebDropdownGroupDescriptionModule, WebDropdownHeaderDescription, WebDropdownHeaderDescriptionMetadata, WebDropdownHeaderDescriptionModule, WebDropdownItemComponentEventArgsDescription, WebDropdownItemComponentEventArgsDescriptionMetadata, WebDropdownItemDescription, WebDropdownItemDescriptionMetadata, WebDropdownItemDescriptionModule, WebExpansionPanelComponentEventArgsDescription, WebExpansionPanelComponentEventArgsDescriptionMetadata, WebExpansionPanelDescription, WebExpansionPanelDescriptionMetadata, WebExpansionPanelDescriptionModule, WebExporterEventArgsDescription, WebExporterEventArgsDescriptionMetadata, WebExporterEventArgsDetailDescription, WebExporterEventArgsDetailDescriptionMetadata, WebExporterOptionsBaseDescription, WebExporterOptionsBaseDescriptionMetadata, WebExpressionTreeDescription, WebExpressionTreeDescriptionMetadata, WebExpressionTreeOrFilteringExpressionDescription, WebExpressionTreeOrFilteringExpressionDescriptionMetadata, WebFieldEditorOptionsDescription, WebFieldEditorOptionsDescriptionMetadata, WebFieldPipeArgsDescription, WebFieldPipeArgsDescriptionMetadata, WebFilteringEventArgsDescription, WebFilteringEventArgsDescriptionMetadata, WebFilteringEventArgsDetailDescription, WebFilteringEventArgsDetailDescriptionMetadata, WebFilteringExpressionDescription, WebFilteringExpressionDescriptionMetadata, WebFilteringExpressionsTreeDescription, WebFilteringExpressionsTreeDescriptionMetadata, WebFilteringExpressionsTreeDetailDescription, WebFilteringExpressionsTreeDetailDescriptionMetadata, WebFilteringExpressionsTreeEventArgsDescription, WebFilteringExpressionsTreeEventArgsDescriptionMetadata, WebFilteringExpressionsTreeOrFilteringExpressionDescription, WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata, WebFilteringExpressionsTreeOrFilteringOperationDescription, WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata, WebFilteringOperandDescription, WebFilteringOperandDescriptionMetadata, WebFilteringOperationDescription, WebFilteringOperationDescriptionMetadata, WebFilteringOptionsDescription, WebFilteringOptionsDescriptionMetadata, WebFilteringStrategyDescription, WebFilteringStrategyDescriptionMetadata, WebFloatPaneActionDescription, WebFloatPaneActionDescriptionMetadata, WebFloatingPaneResizeEventArgsDescription, WebFloatingPaneResizeEventArgsDescriptionMetadata, WebFloatingPaneResizeEventArgsDetailDescription, WebFloatingPaneResizeEventArgsDetailDescriptionMetadata, WebFloatingPaneResizeMoveEventArgsDescription, WebFloatingPaneResizeMoveEventArgsDescriptionMetadata, WebFloatingPaneResizeMoveEventArgsDetailDescription, WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata, WebForOfDataChangeEventArgsDescription, WebForOfDataChangeEventArgsDescriptionMetadata, WebForOfDataChangeEventArgsDetailDescription, WebForOfDataChangeEventArgsDetailDescriptionMetadata, WebForOfDataChangingEventArgsDescription, WebForOfDataChangingEventArgsDescriptionMetadata, WebForOfDataChangingEventArgsDetailDescription, WebForOfDataChangingEventArgsDetailDescriptionMetadata, WebForOfStateDescription, WebForOfStateDescriptionMetadata, WebForOfStateDetailDescription, WebForOfStateDetailDescriptionMetadata, WebForOfStateEventArgsDescription, WebForOfStateEventArgsDescriptionMetadata, WebGridActionsBaseDirectiveDescription, WebGridActionsBaseDirectiveDescriptionMetadata, WebGridActionsBaseDirectiveDescriptionModule, WebGridBaseDirectiveDescription, WebGridBaseDirectiveDescriptionMetadata, WebGridCellEventArgsDescription, WebGridCellEventArgsDescriptionMetadata, WebGridCellEventArgsDetailDescription, WebGridCellEventArgsDetailDescriptionMetadata, WebGridCellIdentifierDescription, WebGridCellIdentifierDescriptionMetadata, WebGridClipboardEventDescription, WebGridClipboardEventDescriptionMetadata, WebGridClipboardEventDetailDescription, WebGridClipboardEventDetailDescriptionMetadata, WebGridClipboardEventEventArgsDescription, WebGridClipboardEventEventArgsDescriptionMetadata, WebGridContextMenuEventArgsDescription, WebGridContextMenuEventArgsDescriptionMetadata, WebGridContextMenuEventArgsDetailDescription, WebGridContextMenuEventArgsDetailDescriptionMetadata, WebGridCreatedEventArgsDescription, WebGridCreatedEventArgsDescriptionMetadata, WebGridCreatedEventArgsDetailDescription, WebGridCreatedEventArgsDetailDescriptionMetadata, WebGridDescription, WebGridDescriptionMetadata, WebGridDescriptionModule, WebGridEditDoneEventArgsDescription, WebGridEditDoneEventArgsDescriptionMetadata, WebGridEditDoneEventArgsDetailDescription, WebGridEditDoneEventArgsDetailDescriptionMetadata, WebGridEditEventArgsDescription, WebGridEditEventArgsDescriptionMetadata, WebGridEditEventArgsDetailDescription, WebGridEditEventArgsDetailDescriptionMetadata, WebGridEditingActionsDescription, WebGridEditingActionsDescriptionMetadata, WebGridEditingActionsDescriptionModule, WebGridEmptyTemplateContextDescription, WebGridEmptyTemplateContextDescriptionMetadata, WebGridFormGroupCreatedEventArgsDescription, WebGridFormGroupCreatedEventArgsDescriptionMetadata, WebGridFormGroupCreatedEventArgsDetailDescription, WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata, WebGridGroupingStrategyDescription, WebGridGroupingStrategyDescriptionMetadata, WebGridHeaderTemplateContextDescription, WebGridHeaderTemplateContextDescriptionMetadata, WebGridKeydownEventArgsDescription, WebGridKeydownEventArgsDescriptionMetadata, WebGridKeydownEventArgsDetailDescription, WebGridKeydownEventArgsDetailDescriptionMetadata, WebGridMasterDetailContextDescription, WebGridMasterDetailContextDescriptionMetadata, WebGridPaginatorTemplateContextDescription, WebGridPaginatorTemplateContextDescriptionMetadata, WebGridPinningActionsDescription, WebGridPinningActionsDescriptionMetadata, WebGridPinningActionsDescriptionModule, WebGridResourceStringsDescription, WebGridResourceStringsDescriptionMetadata, WebGridRowDescription, WebGridRowDescriptionMetadata, WebGridRowDragGhostContextDescription, WebGridRowDragGhostContextDescriptionMetadata, WebGridRowEditActionsTemplateContextDescription, WebGridRowEditActionsTemplateContextDescriptionMetadata, WebGridRowEditTextTemplateContextDescription, WebGridRowEditTextTemplateContextDescriptionMetadata, WebGridRowEventArgsDescription, WebGridRowEventArgsDescriptionMetadata, WebGridRowEventArgsDetailDescription, WebGridRowEventArgsDetailDescriptionMetadata, WebGridRowTemplateContextDescription, WebGridRowTemplateContextDescriptionMetadata, WebGridScrollEventArgsDescription, WebGridScrollEventArgsDescriptionMetadata, WebGridScrollEventArgsDetailDescription, WebGridScrollEventArgsDetailDescriptionMetadata, WebGridSelectionRangeDescription, WebGridSelectionRangeDescriptionMetadata, WebGridSelectionRangeDetailDescription, WebGridSelectionRangeDetailDescriptionMetadata, WebGridSelectionRangeEventArgsDescription, WebGridSelectionRangeEventArgsDescriptionMetadata, WebGridSortingStrategyDescription, WebGridSortingStrategyDescriptionMetadata, WebGridStateBaseDirectiveDescription, WebGridStateBaseDirectiveDescriptionMetadata, WebGridStateBaseDirectiveDescriptionModule, WebGridStateCollectionDescription, WebGridStateCollectionDescriptionMetadata, WebGridStateDescription, WebGridStateDescriptionMetadata, WebGridStateDescriptionModule, WebGridStateInfoDescription, WebGridStateInfoDescriptionMetadata, WebGridStateInfoDetailDescription, WebGridStateInfoDetailDescriptionMetadata, WebGridStateInfoEventArgsDescription, WebGridStateInfoEventArgsDescriptionMetadata, WebGridStateOptionsDescription, WebGridStateOptionsDescriptionMetadata, WebGridTemplateContextDescription, WebGridTemplateContextDescriptionMetadata, WebGridToolbarActionsDescription, WebGridToolbarActionsDescriptionMetadata, WebGridToolbarActionsDescriptionModule, WebGridToolbarAdvancedFilteringDescription, WebGridToolbarAdvancedFilteringDescriptionMetadata, WebGridToolbarAdvancedFilteringDescriptionModule, WebGridToolbarBaseActionDescription, WebGridToolbarBaseActionDescriptionMetadata, WebGridToolbarContentDescription, WebGridToolbarContentDescriptionMetadata, WebGridToolbarDescription, WebGridToolbarDescriptionMetadata, WebGridToolbarDescriptionModule, WebGridToolbarExportEventArgsDescription, WebGridToolbarExportEventArgsDescriptionMetadata, WebGridToolbarExportEventArgsDetailDescription, WebGridToolbarExportEventArgsDetailDescriptionMetadata, WebGridToolbarExporterDescription, WebGridToolbarExporterDescriptionMetadata, WebGridToolbarExporterDescriptionModule, WebGridToolbarHidingDescription, WebGridToolbarHidingDescriptionMetadata, WebGridToolbarHidingDescriptionModule, WebGridToolbarPinningDescription, WebGridToolbarPinningDescriptionMetadata, WebGridToolbarPinningDescriptionModule, WebGridToolbarTemplateContextDescription, WebGridToolbarTemplateContextDescriptionMetadata, WebGridToolbarTitleDescription, WebGridToolbarTitleDescriptionMetadata, WebGridToolbarTitleDescriptionModule, WebGridValidationStateDescription, WebGridValidationStateDescriptionMetadata, WebGridValidationStatusEventArgsDescription, WebGridValidationStatusEventArgsDescriptionMetadata, WebGridValidationStatusEventArgsDetailDescription, WebGridValidationStatusEventArgsDetailDescriptionMetadata, WebGroupByExpandStateDescription, WebGroupByExpandStateDescriptionMetadata, WebGroupByExpandStateEventArgsDescription, WebGroupByExpandStateEventArgsDescriptionMetadata, WebGroupByKeyDescription, WebGroupByKeyDescriptionMetadata, WebGroupByRecordDescription, WebGroupByRecordDescriptionMetadata, WebGroupByResultDescription, WebGroupByResultDescriptionMetadata, WebGroupByRowSelectorTemplateContextDescription, WebGroupByRowSelectorTemplateContextDescriptionMetadata, WebGroupByRowSelectorTemplateDetailsDescription, WebGroupByRowSelectorTemplateDetailsDescriptionMetadata, WebGroupByRowTemplateContextDescription, WebGroupByRowTemplateContextDescriptionMetadata, WebGroupingDoneEventArgsDescription, WebGroupingDoneEventArgsDescriptionMetadata, WebGroupingDoneEventArgsDetailDescription, WebGroupingDoneEventArgsDetailDescriptionMetadata, WebGroupingExpressionDescription, WebGroupingExpressionDescriptionMetadata, WebGroupingExpressionEventArgsDescription, WebGroupingExpressionEventArgsDescriptionMetadata, WebGroupingStateDescription, WebGroupingStateDescriptionMetadata, WebHeadSelectorTemplateContextDescription, WebHeadSelectorTemplateContextDescriptionMetadata, WebHeadSelectorTemplateDetailsDescription, WebHeadSelectorTemplateDetailsDescriptionMetadata, WebHeaderCollection, WebHeaderTypeDescription, WebHeaderTypeDescriptionMetadata, WebHierarchicalGridBaseDirectiveDescription, WebHierarchicalGridBaseDirectiveDescriptionMetadata, WebHierarchicalGridDescription, WebHierarchicalGridDescriptionMetadata, WebHierarchicalGridDescriptionModule, WebIconButtonDescription, WebIconButtonDescriptionMetadata, WebIconButtonDescriptionModule, WebIconDescription, WebIconDescriptionMetadata, WebIconDescriptionModule, WebIconMetaDescription, WebIconMetaDescriptionMetadata, WebImportsHalper, WebInputBaseDescription, WebInputBaseDescriptionMetadata, WebInputBaseDescriptionModule, WebInputDescription, WebInputDescriptionMetadata, WebInputDescriptionModule, WebLayoutChangeEventArgsDescription, WebLayoutChangeEventArgsDescriptionMetadata, WebLinearProgressDescription, WebLinearProgressDescriptionMetadata, WebLinearProgressDescriptionModule, WebListDescription, WebListDescriptionMetadata, WebListDescriptionModule, WebListHeaderDescription, WebListHeaderDescriptionMetadata, WebListHeaderDescriptionModule, WebListItemDescription, WebListItemDescriptionMetadata, WebListItemDescriptionModule, WebMaskInputBaseDescription, WebMaskInputBaseDescriptionMetadata, WebMaskInputBaseDescriptionModule, WebMaskInputDescription, WebMaskInputDescriptionMetadata, WebMaskInputDescriptionModule, WebMoveFloatingPaneActionDescription, WebMoveFloatingPaneActionDescriptionMetadata, WebMoveTabActionDescription, WebMoveTabActionDescriptionMetadata, WebNavDrawerDescription, WebNavDrawerDescriptionMetadata, WebNavDrawerDescriptionModule, WebNavDrawerHeaderItemDescription, WebNavDrawerHeaderItemDescriptionMetadata, WebNavDrawerHeaderItemDescriptionModule, WebNavDrawerItemDescription, WebNavDrawerItemDescriptionMetadata, WebNavDrawerItemDescriptionModule, WebNavbarDescription, WebNavbarDescriptionMetadata, WebNavbarDescriptionModule, WebNumberEventArgsDescription, WebNumberEventArgsDescriptionMetadata, WebNumberFilteringOperandDescription, WebNumberFilteringOperandDescriptionMetadata, WebNumberSummaryOperandDescription, WebNumberSummaryOperandDescriptionMetadata, WebOverlayOutletDirectiveDescription, WebOverlayOutletDirectiveDescriptionMetadata, WebOverlaySettingsDescription, WebOverlaySettingsDescriptionMetadata, WebPageCancellableEventArgsDescription, WebPageCancellableEventArgsDescriptionMetadata, WebPageCancellableEventArgsDetailDescription, WebPageCancellableEventArgsDetailDescriptionMetadata, WebPageEventArgsDescription, WebPageEventArgsDescriptionMetadata, WebPageEventArgsDetailDescription, WebPageEventArgsDetailDescriptionMetadata, WebPaginatorDescription, WebPaginatorDescriptionMetadata, WebPaginatorDescriptionModule, WebPaginatorResourceStringsDescription, WebPaginatorResourceStringsDescriptionMetadata, WebPagingStateDescription, WebPagingStateDescriptionMetadata, WebPaneCloseEventArgsDescription, WebPaneCloseEventArgsDescriptionMetadata, WebPaneCloseEventArgsDetailDescription, WebPaneCloseEventArgsDetailDescriptionMetadata, WebPaneDragActionDescription, WebPaneDragActionDescriptionMetadata, WebPaneDragEndEventArgsDescription, WebPaneDragEndEventArgsDescriptionMetadata, WebPaneDragEndEventArgsDetailDescription, WebPaneDragEndEventArgsDetailDescriptionMetadata, WebPaneDragOverEventArgsDescription, WebPaneDragOverEventArgsDescriptionMetadata, WebPaneDragOverEventArgsDetailDescription, WebPaneDragOverEventArgsDetailDescriptionMetadata, WebPaneDragStartEventArgsDescription, WebPaneDragStartEventArgsDescriptionMetadata, WebPaneDragStartEventArgsDetailDescription, WebPaneDragStartEventArgsDetailDescriptionMetadata, WebPaneHeaderConnectionEventArgsDescription, WebPaneHeaderConnectionEventArgsDescriptionMetadata, WebPaneHeaderConnectionEventArgsDetailDescription, WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata, WebPaneHeaderElementDescription, WebPaneHeaderElementDescriptionMetadata, WebPaneHeaderElementDescriptionModule, WebPanePinnedEventArgsDescription, WebPanePinnedEventArgsDescriptionMetadata, WebPanePinnedEventArgsDetailDescription, WebPanePinnedEventArgsDetailDescriptionMetadata, WebPinColumnCancellableEventArgsDescription, WebPinColumnCancellableEventArgsDescriptionMetadata, WebPinColumnCancellableEventArgsDetailDescription, WebPinColumnCancellableEventArgsDetailDescriptionMetadata, WebPinColumnEventArgsDescription, WebPinColumnEventArgsDescriptionMetadata, WebPinColumnEventArgsDetailDescription, WebPinColumnEventArgsDetailDescriptionMetadata, WebPinRowEventArgsDescription, WebPinRowEventArgsDescriptionMetadata, WebPinRowEventArgsDetailDescription, WebPinRowEventArgsDetailDescriptionMetadata, WebPinningConfigDescription, WebPinningConfigDescriptionMetadata, WebPivotAggregatorDescription, WebPivotAggregatorDescriptionMetadata, WebPivotConfigurationChangedEventArgsDescription, WebPivotConfigurationChangedEventArgsDescriptionMetadata, WebPivotConfigurationChangedEventArgsDetailDescription, WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata, WebPivotConfigurationDescription, WebPivotConfigurationDescriptionMetadata, WebPivotDataSelectorDescription, WebPivotDataSelectorDescriptionMetadata, WebPivotDataSelectorDescriptionModule, WebPivotDateDimensionDescription, WebPivotDateDimensionDescriptionMetadata, WebPivotDateDimensionDescriptionModule, WebPivotDateDimensionOptionsDescription, WebPivotDateDimensionOptionsDescriptionMetadata, WebPivotDimensionDescription, WebPivotDimensionDescriptionMetadata, WebPivotDimensionDetailDescription, WebPivotDimensionDetailDescriptionMetadata, WebPivotDimensionEventArgsDescription, WebPivotDimensionEventArgsDescriptionMetadata, WebPivotDimensionStrategyDescription, WebPivotDimensionStrategyDescriptionMetadata, WebPivotGridColumnDescription, WebPivotGridColumnDescriptionMetadata, WebPivotGridDescription, WebPivotGridDescriptionMetadata, WebPivotGridDescriptionModule, WebPivotGridRecordDescription, WebPivotGridRecordDescriptionMetadata, WebPivotGridValueTemplateContextDescription, WebPivotGridValueTemplateContextDescriptionMetadata, WebPivotKeysDescription, WebPivotKeysDescriptionMetadata, WebPivotUISettingsDescription, WebPivotUISettingsDescriptionMetadata, WebPivotValueDescription, WebPivotValueDescriptionMetadata, WebPivotValueDetailDescription, WebPivotValueDetailDescriptionMetadata, WebPivotValueEventArgsDescription, WebPivotValueEventArgsDescriptionMetadata, WebPositionSettingsDescription, WebPositionSettingsDescriptionMetadata, WebPositionStrategyDescription, WebPositionStrategyDescriptionMetadata, WebProgressBaseDescription, WebProgressBaseDescriptionMetadata, WebProgressBaseDescriptionModule, WebRadioChangeEventArgsDescription, WebRadioChangeEventArgsDescriptionMetadata, WebRadioChangeEventArgsDetailDescription, WebRadioChangeEventArgsDetailDescriptionMetadata, WebRadioDescription, WebRadioDescriptionMetadata, WebRadioDescriptionModule, WebRadioGroupDescription, WebRadioGroupDescriptionMetadata, WebRadioGroupDescriptionModule, WebRangeSliderDescription, WebRangeSliderDescriptionMetadata, WebRangeSliderDescriptionModule, WebRangeSliderValueDescription, WebRangeSliderValueDescriptionMetadata, WebRangeSliderValueEventArgsDescription, WebRangeSliderValueEventArgsDescriptionMetadata, WebRatingDescription, WebRatingDescriptionMetadata, WebRatingDescriptionModule, WebRatingSymbolDescription, WebRatingSymbolDescriptionMetadata, WebRatingSymbolDescriptionModule, WebRippleDescription, WebRippleDescriptionMetadata, WebRippleDescriptionModule, WebRowDataCancelableEventArgsDescription, WebRowDataCancelableEventArgsDescriptionMetadata, WebRowDataCancelableEventArgsDetailDescription, WebRowDataCancelableEventArgsDetailDescriptionMetadata, WebRowDataEventArgsDescription, WebRowDataEventArgsDescriptionMetadata, WebRowDataEventArgsDetailDescription, WebRowDataEventArgsDetailDescriptionMetadata, WebRowDirectiveDescription, WebRowDirectiveDescriptionMetadata, WebRowDragEndEventArgsDescription, WebRowDragEndEventArgsDescriptionMetadata, WebRowDragEndEventArgsDetailDescription, WebRowDragEndEventArgsDetailDescriptionMetadata, WebRowDragStartEventArgsDescription, WebRowDragStartEventArgsDescriptionMetadata, WebRowDragStartEventArgsDetailDescription, WebRowDragStartEventArgsDetailDescriptionMetadata, WebRowExportingEventArgsDescription, WebRowExportingEventArgsDescriptionMetadata, WebRowExportingEventArgsDetailDescription, WebRowExportingEventArgsDetailDescriptionMetadata, WebRowIslandDescription, WebRowIslandDescriptionMetadata, WebRowIslandDescriptionModule, WebRowSelectionEventArgsDescription, WebRowSelectionEventArgsDescriptionMetadata, WebRowSelectionEventArgsDetailDescription, WebRowSelectionEventArgsDetailDescriptionMetadata, WebRowSelectorTemplateContextDescription, WebRowSelectorTemplateContextDescriptionMetadata, WebRowSelectorTemplateDetailsDescription, WebRowSelectorTemplateDetailsDescriptionMetadata, WebRowToggleEventArgsDescription, WebRowToggleEventArgsDescriptionMetadata, WebRowToggleEventArgsDetailDescription, WebRowToggleEventArgsDetailDescriptionMetadata, WebRowTypeDescription, WebRowTypeDescriptionMetadata, WebScrollStrategyDescription, WebScrollStrategyDescriptionMetadata, WebSearchInfoDescription, WebSearchInfoDescriptionMetadata, WebSelectDescription, WebSelectDescriptionMetadata, WebSelectDescriptionModule, WebSelectGroupDescription, WebSelectGroupDescriptionMetadata, WebSelectGroupDescriptionModule, WebSelectHeaderDescription, WebSelectHeaderDescriptionMetadata, WebSelectHeaderDescriptionModule, WebSelectItemComponentEventArgsDescription, WebSelectItemComponentEventArgsDescriptionMetadata, WebSelectItemDescription, WebSelectItemDescriptionMetadata, WebSelectItemDescriptionModule, WebSizeDescription, WebSizeDescriptionMetadata, WebSliderBaseDescription, WebSliderBaseDescriptionMetadata, WebSliderBaseDescriptionModule, WebSliderDescription, WebSliderDescriptionMetadata, WebSliderDescriptionModule, WebSliderLabelDescription, WebSliderLabelDescriptionMetadata, WebSliderLabelDescriptionModule, WebSnackbarDescription, WebSnackbarDescriptionMetadata, WebSnackbarDescriptionModule, WebSortingEventArgsDescription, WebSortingEventArgsDescriptionMetadata, WebSortingEventArgsDetailDescription, WebSortingEventArgsDetailDescriptionMetadata, WebSortingExpressionDescription, WebSortingExpressionDescriptionMetadata, WebSortingExpressionEventArgsDescription, WebSortingExpressionEventArgsDescriptionMetadata, WebSortingOptionsDescription, WebSortingOptionsDescriptionMetadata, WebSortingStrategyDescription, WebSortingStrategyDescriptionMetadata, WebSplitPaneDescription, WebSplitPaneDescriptionMetadata, WebSplitPaneDescriptionModule, WebStepDescription, WebStepDescriptionMetadata, WebStepDescriptionModule, WebStepperDescription, WebStepperDescriptionMetadata, WebStepperDescriptionModule, WebStringFilteringOperandDescription, WebStringFilteringOperandDescriptionMetadata, WebSummaryExpressionDescription, WebSummaryExpressionDescriptionMetadata, WebSummaryOperandDescription, WebSummaryOperandDescriptionMetadata, WebSummaryResultDescription, WebSummaryResultDescriptionMetadata, WebSummaryTemplateContextDescription, WebSummaryTemplateContextDescriptionMetadata, WebSwitchDescription, WebSwitchDescriptionMetadata, WebSwitchDescriptionModule, WebTabComponentEventArgsDescription, WebTabComponentEventArgsDescriptionMetadata, WebTabDescription, WebTabDescriptionMetadata, WebTabDescriptionModule, WebTabGroupPaneDescription, WebTabGroupPaneDescriptionMetadata, WebTabGroupPaneDescriptionModule, WebTabHeaderConnectionEventArgsDescription, WebTabHeaderConnectionEventArgsDescriptionMetadata, WebTabHeaderConnectionEventArgsDetailDescription, WebTabHeaderConnectionEventArgsDetailDescriptionMetadata, WebTabHeaderElementDescription, WebTabHeaderElementDescriptionMetadata, WebTabHeaderElementDescriptionModule, WebTabsDescription, WebTabsDescriptionMetadata, WebTabsDescriptionModule, WebTextareaDescription, WebTextareaDescriptionMetadata, WebTextareaDescriptionModule, WebTileChangeStateEventArgsDescription, WebTileChangeStateEventArgsDescriptionMetadata, WebTileChangeStateEventArgsDetailDescription, WebTileChangeStateEventArgsDetailDescriptionMetadata, WebTileComponentEventArgsDescription, WebTileComponentEventArgsDescriptionMetadata, WebTileDescription, WebTileDescriptionMetadata, WebTileDescriptionModule, WebTileManagerDescription, WebTileManagerDescriptionMetadata, WebTileManagerDescriptionModule, WebTimeFilteringOperandDescription, WebTimeFilteringOperandDescriptionMetadata, WebTimeSummaryOperandDescription, WebTimeSummaryOperandDescriptionMetadata, WebToastDescription, WebToastDescriptionMetadata, WebToastDescriptionModule, WebToggleButtonDescription, WebToggleButtonDescriptionMetadata, WebToggleButtonDescriptionModule, WebToggleViewCancelableEventArgsDescription, WebToggleViewCancelableEventArgsDescriptionMetadata, WebToggleViewCancelableEventArgsDetailDescription, WebToggleViewCancelableEventArgsDetailDescriptionMetadata, WebToggleViewEventArgsDescription, WebToggleViewEventArgsDescriptionMetadata, WebToggleViewEventArgsDetailDescription, WebToggleViewEventArgsDetailDescriptionMetadata, WebTooltipDescription, WebTooltipDescriptionMetadata, WebTooltipDescriptionModule, WebTransactionServiceDescription, WebTransactionServiceDescriptionMetadata, WebTreeDescription, WebTreeDescriptionMetadata, WebTreeDescriptionModule, WebTreeGridDescription, WebTreeGridDescriptionMetadata, WebTreeGridDescriptionModule, WebTreeGridRecordDescription, WebTreeGridRecordDescriptionMetadata, WebTreeItemComponentEventArgsDescription, WebTreeItemComponentEventArgsDescriptionMetadata, WebTreeItemDescription, WebTreeItemDescriptionMetadata, WebTreeItemDescriptionModule, WebTreeSelectionEventArgsDescription, WebTreeSelectionEventArgsDescriptionMetadata, WebTreeSelectionEventArgsDetailDescription, WebTreeSelectionEventArgsDetailDescriptionMetadata, WebValidationErrorsDescription, WebValidationErrorsDescriptionMetadata, WebValuesChangeDescription, WebValuesChangeDescriptionMetadata, WebValuesChangeDetailDescription, WebValuesChangeDetailDescriptionMetadata, WebValuesChangeEventArgsDescription, WebValuesChangeEventArgsDescriptionMetadata, 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, createMutationObserver, 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, doubleCollectionToString, endsWith1, ensureBool, ensureEnum, enumGetBox, enumToString, floor10, fromBrushCollection, fromColorCollection, fromDict, fromDoubleCollection, fromEn, fromEnum, fromOADate, fromPoint, fromRect, fromSize, fromSpinal, getAllPropertyNames, getBoxIfEnum, getColorStringSafe, getEn, getEnumerator, getEnumeratorObject, getInstanceType, getModifiedProps, ieeeRemainder, indexOfAny, initializePropertiesFromCss, intDivide, intSToU, intToString, intToString1, interfaceToInternal, 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, toDoubleCollection, 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 };