-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathcore-common.exports.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
1073 lines (1073 loc) · 35.4 KB
/
Copy pathcore-common.exports.csv
File metadata and controls
1073 lines (1073 loc) · 35.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
sep=;
Release Tag;API Item Type;API Item Name
public;class;AdditionalTransform
public;interface;AdditionalTransformProps
public;class;AffineTransform
public;interface;AffineTransformProps
internal;const;aggregateLoad
public;class;AmbientLight
public;interface;AmbientLightProps
public;namespace;AmbientOcclusion
public;class;AnalysisStyle
public;class;AnalysisStyleDisplacement
public;interface;AnalysisStyleDisplacementProps
public;interface;AnalysisStyleProps
public;class;AnalysisStyleThematic
public;interface;AnalysisStyleThematicProps
beta;interface;AnnotationTextStyleProps
public;interface;AppearanceOverrideProps
public;interface;AreaFillProps
public;namespace;AreaPattern
beta;namespace;Atmosphere
internal;class;Wavelengths
internal;interface;WavelengthsProps
public;interface;AuthorizationClient
public;interface;AuxCoordSystem2dProps
public;interface;AuxCoordSystem3dProps
public;interface;AuxCoordSystemProps
public;type;AxisAlignedBox3d
public;type;AxisAlignedBox3dProps
internal;class;B3dmHeader
internal;type;BackendBuffer
deprecated;type;BackendBuffer
public;class;BackendError
public;type;BackendReadable
deprecated;type;BackendReadable
public;type;BackendWritable
deprecated;type;BackendWritable
public;enum;BackgroundFill
public;interface;BackgroundMapProps
public;class;BackgroundMapProvider
public;type;BackgroundMapProviderName
public;interface;BackgroundMapProviderProps
public;class;BackgroundMapSettings
public;enum;BackgroundMapType
public;type;Base64EncodedString
public;namespace;Base64EncodedString
public;type;BaseLayerProps
public;type;BaseLayerSettings
public;namespace;BaseLayerSettings
beta;type;BaselineShift
public;interface;BaseMapLayerProps
public;class;BaseMapLayerSettings
public;interface;BaseReaderOptions
public;interface;BasicPlanarClipMaskArgs
public;enum;BatchType
beta;class;BentleyCloudRpcConfiguration
beta;class;BentleyCloudRpcManager
beta;interface;BentleyCloudRpcParams
internal;class;BentleyCloudRpcProtocol
public;interface;BinaryImageSource
public;enum;BisCodeSpec
internal;function;bisectTileRange2d
internal;function;bisectTileRange3d
beta;interface;BlobOptions
beta;class;BlobOptionsBuilder
beta;type;BlobRange
public;class;BoundingSphere
alpha;interface;BRepCutProps
public;namespace;BRepEntity
alpha;interface;BRepGeometryCreate
alpha;type;BRepGeometryFunction
alpha;interface;BRepGeometryInfo
alpha;enum;BRepGeometryOperation
alpha;interface;BRepHollowProps
alpha;interface;BRepOffsetProps
public;interface;BRepPrimitive
alpha;interface;BRepRoundProps
alpha;interface;BRepThickenProps
public;interface;BriefcaseConnectionProps
public;interface;BriefcaseDownloader
public;type;BriefcaseId
public;enum;BriefcaseIdValue
public;interface;BriefcaseProps
public;function;calculateSolarAngles
public;function;calculateSolarDirection
public;function;calculateSolarDirectionFromAngles
public;function;calculateSunriseOrSunset
public;interface;CalloutProps
public;class;Camera
public;interface;CameraProps
public;class;Carto2DDegrees
public;interface;Carto2DDegreesProps
public;class;Cartographic
public;interface;CartographicProps
public;class;CartographicRange
beta;namespace;CatalogError
beta;namespace;CatalogIModel
internal;type;IpcChannel
internal;interface;IpcMethods
public;interface;CategoryProps
preview;interface;CategoryProps
public;interface;CategorySelectorProps
beta;enum;CesiumIonAssetId
public;enum;CesiumTerrainAssetId
internal;interface;ChangeData
public;interface;ChangedElements
public;interface;ChangedEntities
internal;interface;ChangedModels
public;enum;ChangedValueState
public;enum;ChangeOpCode
public;interface;ChangesetFileProps
beta;interface;ChangesetHealthStats
public;type;ChangesetId
public;interface;ChangesetIdWithIndex
public;type;ChangesetIndex
public;interface;ChangesetIndexAndId
public;type;ChangesetIndexOrId
public;interface;ChangesetProps
public;interface;ChangesetRange
public;enum;ChangesetType
beta;interface;ChannelControlError
beta;namespace;ChannelControlError
public;interface;ChannelRootAspectProps
preview;interface;ChannelRootAspectProps
internal;interface;ClassifierTileTreeId
beta;interface;ClearTextStyleOptions
public;class;ClipIntersectionStyle
public;interface;ClipIntersectionStyleProps
public;class;ClipStyle
public;interface;ClipStyleCreateArgs
public;interface;ClipStyleProps
beta;interface;CloudContainerUri
beta;interface;CloudSqliteError
beta;namespace;CloudSqliteError
public;class;Code
public;interface;CodeProps
public;type;CodeScopeProps
public;namespace;CodeScopeSpec
public;class;CodeSpec
public;interface;CodeSpecProperties
public;const;ColorByName
public;class;ColorDef
public;type;ColorDefProps
public;class;ColorIndex
public;enum;CommonLoggerCategory
public;interface;CommonMapLayerProps
internal;function;compareIModelTileTreeIds
internal;class;CompositeTileHeader
internal;function;computeChildTileProps
internal;function;computeChildTileRanges
alpha;type;ComputeNodeId
internal;function;computeTileChordTolerance
alpha;enum;ConcreteEntityTypes
alpha;namespace;ConcreteEntityTypes
internal;function;toBisCoreRootClassFullName
public;interface;ConflictingLock
beta;interface;ConflictingLocks
public;class;ConflictingLocksError
alpha;enum;ContentFlags
internal;class;ContentIdProvider
public;class;ContextRealityModel
public;interface;ContextRealityModelProps
public;namespace;ContextRealityModelProps
public;class;ContextRealityModels
public;interface;ContextRealityModelsArgs
public;interface;ContextRealityModelsContainer
public;class;Contour
public;class;ContourDisplay
public;type;ContourDisplayProperties
public;interface;ContourDisplayProps
public;class;ContourGroup
public;type;ContourGroupProperties
public;interface;ContourGroupProps
public;type;ContourProperties
public;interface;ContourProps
public;class;ContourStyle
public;type;ContourStyleProperties
public;interface;ContourStyleProps
public;type;CreateEmptySnapshotIModelProps
public;type;CreateEmptyStandaloneIModelProps
public;interface;CreateIModelProps
public;interface;CreateSnapshotIModelProps
public;interface;CreateStandaloneIModelProps
internal;const;CURRENT_INVOCATION
internal;const;CURRENT_REQUEST
internal;enum;CurrentImdlVersion
beta;interface;CustomAttribute
deprecated;interface;CustomAttribute
internal;interface;CustomViewState3dCreatorOptions
internal;interface;CustomViewState3dProps
public;class;CutStyle
public;interface;CutStyleProps
public;type;DanishSystem34Region
beta;interface;DateTimeFieldFormatOptions
internal;interface;DbBlobRequest
internal;interface;DbBlobResponse
public;interface;DbCloudContainerInfo
internal;interface;DbQueryConfig
public;class;DbQueryError
internal;interface;DbQueryRequest
internal;interface;DbQueryResponse
internal;interface;DbRequest
internal;interface;DbRequestExecutor
internal;enum;DbRequestKind
internal;interface;DbResponse
internal;enum;DbResponseKind
internal;enum;DbResponseStatus
beta;interface;DbRuntimeStats
internal;enum;DbValueFormat
internal;function;decodeTileContentDescription
internal;interface;DecodeTileContentDescriptionArgs
internal;interface;DecorationGeometryProps
beta;enum;DefaultSupportedTypes
internal;const;defaultTileOptions
public;interface;DefinitionElementProps
preview;interface;DefinitionElementProps
public;interface;DeletedElementGeometryChange
public;interface;DeprecatedBackgroundMapProps
internal;class;DevToolsRpcInterface
internal;enum;DevToolsStatsOptions
public;interface;DisplayStyle3dProps
public;class;DisplayStyle3dSettings
public;interface;DisplayStyle3dSettingsProps
public;interface;DisplayStyleLoadProps
preview;interface;DisplayStyleLoadProps
public;interface;DisplayStyleModelAppearanceProps
public;interface;DisplayStyleOverridesOptions
public;interface;DisplayStylePlanarClipMaskProps
public;interface;DisplayStyleProps
beta;interface;DisplayStyleRealityModelDisplayProps
public;class;DisplayStyleSettings
public;interface;DisplayStyleSettingsOptions
public;interface;DisplayStyleSettingsProps
public;interface;DisplayStyleSubCategoryProps
beta;enum;DomainOptions
public;interface;DrawingProps
preview;interface;DrawingProps
public;interface;DynamicGraphicsRequest2dProps
public;interface;DynamicGraphicsRequest3dProps
public;interface;DynamicGraphicsRequestProps
public;const;Easing
public;type;EasingFunction
public;class;EcefLocation
public;interface;EcefLocationProps
public;class;ECJsNames
public;interface;ECSchemaItemProps
public;interface;ECSchemaProps
public;interface;ECSchemaReferenceProps
public;class;ECSqlReader
public;class;ECSqlReaderBase
public;enum;ECSqlSystemProperty
public;enum;ECSqlValueType
beta;type;ECVersionString
internal;interface;EdgeAppearanceOverrides
internal;class;EdgeArgs
internal;interface;EdgeOptions
internal;interface;EditingScopeNotifications
beta;interface;EditTxnError
beta;namespace;EditTxnError
public;type;ElementAlignedBox2d
public;type;ElementAlignedBox3d
public;interface;ElementAspectProps
preview;interface;ElementAspectProps
beta;namespace;ElementGeometry
public;interface;ElementGeometryBuilderParams
public;interface;ElementGeometryBuilderParamsForPart
beta;interface;ElementGeometryCacheOperationRequestProps
beta;interface;ElementGeometryCacheRequestProps
beta;interface;ElementGeometryCacheResponseProps
public;type;ElementGeometryChange
public;namespace;ElementGeometryChange
public;interface;ElementGeometryDataEntry
beta;type;ElementGeometryFunction
beta;interface;ElementGeometryInfo
public;enum;ElementGeometryOpcode
beta;interface;ElementGeometryRequest
public;type;ElementGraphicsRequestProps
public;interface;ElementIdsAndRangesProps
public;interface;ElementLoadOptions
preview;interface;ElementLoadOptions
public;interface;ElementLoadProps
preview;interface;ElementLoadProps
beta;interface;ElementMeshOptions
beta;interface;ElementMeshRequestProps
public;interface;ElementPlanarClipMaskArgs
public;interface;ElementProps
preview;interface;ElementProps
public;interface;EmphasizeElementsProps
public;class;EmptyLocalization
public;interface;EntityIdAndClassId
public;type;EntityIdAndClassIdIterable
beta;class;EntityMetaData
deprecated;class;EntityMetaData
beta;interface;EntityMetaDataProps
deprecated;interface;EntityMetaDataProps
public;interface;EntityProps
preview;interface;EntityProps
public;interface;EntityQueryParams
preview;interface;EntityQueryParams
alpha;type;EntityReference
alpha;class;EntityReferenceSet
public;class;Environment
public;type;EnvironmentProperties
public;interface;EnvironmentProps
public;interface;ExtantElementGeometryChange
public;interface;ExternalSourceAspectProps
preview;interface;ExternalSourceAspectProps
beta;interface;ExternalSourceAttachmentProps
beta;enum;ExternalSourceAttachmentRole
beta;interface;ExternalSourceProps
public;class;Feature
public;class;FeatureAppearance
public;interface;FeatureAppearanceProps
public;interface;FeatureAppearanceProvider
public;namespace;FeatureAppearanceProvider
public;interface;FeatureAppearanceSource
public;class;FeatureIndex
public;enum;FeatureIndexType
public;class;FeatureOverrides
public;enum;FeatureOverrideType
public;class;FeatureTable
internal;class;FeatureTableHeader
beta;type;FieldCase
beta;interface;FieldFormatOptions
internal;type;FieldPrimitiveValue
beta;interface;FieldPropertyHost
beta;interface;FieldPropertyPath
beta;type;FieldPropertyType
beta;class;FieldRun
beta;interface;FieldRunProps
internal;interface;FieldValue
public;interface;FilePropertyProps
public;enum;FillDisplay
public;enum;FillFlags
public;interface;FlatBufferGeometryStream
beta;interface;FontFace
public;interface;FontFamilyDescriptor
beta;interface;FontFamilySelector
public;type;FontId
public;class;FontMap
deprecated;class;FontMap
public;interface;FontMapProps
deprecated;interface;FontMapProps
public;interface;FontProps
public;enum;FontType
internal;function;formatFieldValue
internal;interface;FormDataCommon
beta;class;FractionRun
beta;interface;FractionRunProps
public;class;FresnelSettings
public;interface;FresnelSettingsProps
public;class;Frustum
public;class;FrustumPlanes
public;namespace;FrustumPlanes
public;interface;FunctionalElementProps
beta;interface;GenericInstanceFilter
beta;namespace;GenericInstanceFilter
beta;interface;GenericInstanceFilterRelatedInstanceDescription
beta;interface;GenericInstanceFilterRelationshipStep
beta;interface;GenericInstanceFilterRule
beta;interface;GenericInstanceFilterRuleGroup
beta;type;GenericInstanceFilterRuleGroupOperator
beta;type;GenericInstanceFilterRuleOperator
beta;type;GenericInstanceFilterRuleValue
beta;namespace;GenericInstanceFilterRuleValue
public;class;GeocentricTransform
public;interface;GeocentricTransformProps
beta;interface;GeoCoordinatesRequestProps
beta;interface;GeoCoordinatesResponseProps
public;enum;GeoCoordStatus
public;class;GeodeticDatum
public;interface;GeodeticDatumProps
public;class;GeodeticEllipsoid
public;interface;GeodeticEllipsoidProps
public;class;GeodeticTransform
public;type;GeodeticTransformMethod
public;class;GeodeticTransformPath
public;interface;GeodeticTransformPathProps
public;interface;GeodeticTransformProps
public;class;GeographicCRS
beta;interface;GeographicCRSInterpretRequestProps
beta;interface;GeographicCRSInterpretResponseProps
public;interface;GeographicCRSProps
public;interface;GeometricElement2dProps
preview;interface;GeometricElement2dProps
public;interface;GeometricElement3dProps
preview;interface;GeometricElement3dProps
public;interface;GeometricElementProps
preview;interface;GeometricElementProps
public;interface;GeometricModel2dProps
public;interface;GeometricModel3dProps
public;interface;GeometricModelProps
public;interface;GeometryAppearanceProps
public;enum;GeometryClass
public;interface;GeometryContainmentRequestProps
public;interface;GeometryContainmentResponseProps
public;class;GeometryParams
public;interface;GeometryPartInstanceProps
public;interface;GeometryPartProps
preview;interface;GeometryPartProps
public;interface;GeometryPrimitive
public;class;GeometryStreamBuilder
public;interface;GeometryStreamEntryProps
public;enum;GeometryStreamFlags
public;interface;GeometryStreamHeaderProps
public;class;GeometryStreamIterator
public;interface;GeometryStreamIteratorEntry
public;type;GeometryStreamPrimitive
public;type;GeometryStreamProps
public;interface;GeometrySummaryOptions
public;interface;GeometrySummaryRequestProps
public;enum;GeometrySummaryVerbosity
beta;function;getMarkerText
internal;function;getMaximumMajorTileFormatVersion
internal;const;getPullChangesIpcChannel
internal;function;getTileObjectReference
internal;class;GlbHeader
public;enum;GlobeMode
internal;interface;GltfChunk
internal;class;GltfHeader
internal;enum;GltfV2ChunkTypes
internal;enum;GltfVersions
public;namespace;Gradient
public;class;GraphicParams
public;interface;GraphicsRequestProps
public;class;GridFileDefinition
public;interface;GridFileDefinitionProps
public;type;GridFileDirection
public;type;GridFileFormat
public;class;GridFileTransform
public;interface;GridFileTransformProps
public;enum;GridOrientationType
public;class;GroundPlane
public;type;GroundPlaneProperties
public;interface;GroundPlaneProps
public;class;Helmert2DWithZOffset
public;interface;Helmert2DWithZOffsetProps
public;type;HemisphereEnum
public;class;HemisphereLights
public;interface;HemisphereLightsProps
public;namespace;HiddenLine
public;namespace;Hilite
public;class;HorizontalCRS
public;class;HorizontalCRSExtent
public;interface;HorizontalCRSExtentProps
public;interface;HorizontalCRSProps
public;class;HSLColor
public;class;HSVColor
public;enum;HSVConstants
internal;type;HttpMethod_T
public;interface;HttpServerRequest
deprecated;interface;HttpServerRequest
public;interface;HttpServerResponse
deprecated;interface;HttpServerResponse
internal;interface;HydrateViewStateRequestProps
internal;interface;HydrateViewStateResponseProps
internal;class;I3dmHeader
public;type;IgnoreAnimationOverrides
public;interface;IgnoreAnimationOverridesArgs
public;class;ImageBuffer
public;enum;ImageBufferFormat
public;class;ImageGraphic
public;class;ImageGraphicCorners
public;type;ImageGraphicCornersProps
public;interface;ImageGraphicProps
public;interface;ImageMapLayerProps
public;class;ImageMapLayerSettings
public;interface;ImagePrimitive
public;type;ImageryMapLayerFormatId
public;class;ImageSource
public;enum;ImageSourceFormat
internal;enum;ImdlFlags
internal;class;ImdlHeader
public;class;IModel
public;type;IModelConnectionProps
beta;interface;IModelCoordinatesRequestProps
beta;interface;IModelCoordinatesResponseProps
public;class;IModelError
public;type;IModelErrorNumber
public;class;IModelNotFoundResponse
public;interface;IModelProps
internal;class;IModelReadRpcInterface
public;interface;IModelRpcOpenProps
public;interface;IModelRpcProps
public;class;IModelTileRpcInterface
internal;type;IModelTileTreeId
internal;function;iModelTileTreeIdToString
internal;interface;IModelTileTreeProps
public;class;IModelVersion
public;type;IModelVersionProps
public;interface;InformationPartitionElementProps
preview;interface;InformationPartitionElementProps
internal;const;initializeRpcRequest
internal;const;INSTANCE
internal;interface;InterceptedRpcRequest
beta;enum;InternetConnectivityStatus
public;const;Interpolation
public;type;InterpolationFunction
internal;const;ipcAppChannels
internal;interface;IpcAppFunctions
internal;interface;IpcAppNotifications
internal;type;IpcInvokeReturn
public;type;IpcListener
internal;class;IpcSession
public;interface;IpcSocket
public;interface;IpcSocketBackend
public;interface;IpcSocketFrontend
internal;class;IpcWebSocket
internal;class;IpcWebSocketBackend
internal;class;IpcWebSocketFrontend
internal;interface;IpcWebSocketMessage
internal;namespace;IpcWebSocketMessage
internal;enum;IpcWebSocketMessageType
internal;class;IpcWebSocketTransport
public;function;isBinaryImageSource
internal;function;isKnownFieldPropertyType
internal;function;isKnownTileFormat
public;function;isPlacement2dProps
preview;function;isPlacement2dProps
public;function;isPlacement3dProps
preview;function;isPlacement3dProps
public;function;isPowerOfTwo
public;function;isValidImageSourceFormat
internal;const;iTwinChannel
beta;interface;ITwinSettingsError
beta;namespace;ITwinSettingsError
public;interface;JsonGeometryStream
beta;type;LeaderAttachment
beta;type;LeaderTextPointOptions
internal;interface;LegacyAnalysisStyleProps
internal;interface;LightLocationProps
public;class;LightSettings
public;interface;LightSettingsProps
beta;class;LineBreakRun
beta;interface;LineBreakRunProps
beta;interface;LineLayoutResult
public;enum;LinePixels
public;namespace;LineStyle
public;interface;LineStyleProps
preview;interface;LineStyleProps
beta;class;List
beta;interface;ListMarker
beta;enum;ListMarkerEnumerator
beta;interface;ListProps
public;type;LocalAlignedBox3d
public;interface;LocalBriefcaseProps
public;type;LocalDirName
public;type;LocalFileName
public;interface;Localization
public;enum;LockState
public;interface;MapImageryProps
public;class;MapImagerySettings
public;interface;MapLayerKey
public;type;MapLayerProps
beta;type;MapLayerProviderArrayProperty
beta;interface;MapLayerProviderProperties
public;class;MapLayerSettings
public;interface;MapSubLayerProps
public;class;MapSubLayerSettings
public;function;mapToGeoServiceStatus
internal;interface;MarshalingBinaryMarker
internal;namespace;MarshalingBinaryMarker
public;enum;MassPropertiesOperation
public;interface;MassPropertiesPerCandidateRequestProps
deprecated;interface;MassPropertiesPerCandidateRequestProps
public;interface;MassPropertiesPerCandidateResponseProps
deprecated;interface;MassPropertiesPerCandidateResponseProps
public;interface;MassPropertiesRequestProps
public;interface;MassPropertiesResponseProps
public;interface;MaterialProps
internal;class;MeshEdge
internal;class;MeshEdges
internal;class;MeshPolyline
internal;type;MeshPolylineList
public;class;ModelClipGroup
public;interface;ModelClipGroupProps
public;class;ModelClipGroups
public;interface;ModelExtentsProps
public;interface;ModelFeature
public;namespace;ModelFeature
alpha;function;unpack
public;interface;ModelGeometryChanges
public;namespace;ModelGeometryChanges
public;interface;ModelGeometryChangesProps
public;interface;ModelIdAndGeometryGuid
public;interface;ModelLoadProps
beta;enum;ModelMapLayerDrapeTarget
public;interface;ModelMapLayerProps
public;class;ModelMapLayerSettings
public;interface;ModelPlanarClipMaskArgs
public;interface;ModelProps
public;interface;ModelQueryParams
public;interface;ModelSelectorProps
public;enum;MonochromeMode
internal;class;MultiModelPackedFeatureTable
internal;interface;NativeAppFunctions
internal;const;nativeAppIpcStrings
internal;interface;NativeAppNotifications
public;interface;NavigationBindingValue
public;interface;NavigationValue
public;function;nextHighestPowerOfTwo
internal;function;nextPoint3d64FromByteStream
public;class;NoContentError
public;class;NonUniformColor
public;enum;NormalMapFlags
beta;interface;NormalMapParams
public;interface;NormalMapProps
internal;interface;NotifyEntitiesChangedArgs
internal;interface;NotifyEntitiesChangedMetadata
public;enum;Npc
public;const;NpcCenter
public;const;NpcCorners
public;class;OctEncodedNormal
internal;class;OctEncodedNormalPair
internal;interface;OpenAPIContentMap
internal;interface;OpenAPIDocument
internal;interface;OpenAPIEncoding
public;interface;OpenAPIInfo
deprecated;interface;OpenAPIInfo
internal;interface;OpenAPIMediaType
internal;interface;OpenAPIOperation
internal;interface;OpenAPIParameter
internal;interface;OpenAPIPathItem
internal;interface;OpenAPIPaths
internal;interface;OpenAPIRequestBody
internal;interface;OpenAPIResponse
internal;interface;OpenAPIResponses
internal;interface;OpenAPISchema
public;interface;OpenBriefcaseOptions
public;interface;OpenBriefcaseProps
beta;interface;OpenCheckpointArgs
public;interface;OpenDbKey
public;interface;OpenSqliteArgs
internal;const;OPERATION
alpha;interface;OrbitGtBlobProps
beta;enum;OverriddenBy
public;interface;OverrideElementAppearanceOptions
public;type;OverrideFeatureAppearanceArgs
public;interface;OverrideFeatureAppearanceOptions
public;interface;OverrideModelAppearanceOptions
public;interface;OverrideSubCategoryAppearanceOptions
public;interface;PackedFeature
public;namespace;PackedFeature
internal;class;PackedFeatureModelTable
internal;class;PackedFeatureTable
public;interface;PackedFeatureWithIndex
beta;class;Paragraph
beta;interface;ParagraphProps
internal;interface;ParsedTileTreeIdAndContentId
internal;function;parseTileTreeIdAndContentId
public;interface;PartReference
public;type;PersistentBackgroundMapProps
public;interface;PersistentGraphicsRequestProps
beta;interface;PerStatementHealthStats
public;interface;PhysicalElementProps
preview;interface;PhysicalElementProps
public;interface;PhysicalTypeProps
preview;interface;PhysicalTypeProps
public;type;Placement
public;class;Placement2d
public;interface;Placement2dProps
preview;interface;Placement2dProps
public;class;Placement3d
public;interface;Placement3dProps
preview;interface;Placement3dProps
public;type;PlacementProps
preview;type;PlacementProps
public;enum;PlanarClipMaskMode
public;enum;PlanarClipMaskPriority
public;interface;PlanarClipMaskProps
public;class;PlanarClipMaskSettings
public;class;PlanProjectionSettings
public;interface;PlanProjectionSettingsProps
internal;class;PntsHeader
public;type;Point2dProps
beta;interface;PointCloudDisplayProps
beta;class;PointCloudDisplaySettings
beta;type;PointCloudEDLMode
beta;type;PointCloudShape
beta;type;PointCloudSizeMode
public;interface;PointWithStatus
internal;const;POLICY
internal;class;PolylineEdgeArgs
public;interface;PolylineFlags
public;type;PolylineIndices
public;enum;PolylineTypeFlags
public;class;PositionalVectorTransform
public;interface;PositionalVectorTransformProps
internal;interface;PrimaryTileTreeId
beta;enum;PrimitiveTypeCode
public;interface;PriorityPlanarClipMaskArgs
beta;enum;ProfileOptions
beta;interface;ProjectInformation
beta;type;ProjectInformationRecordProps
public;class;Projection
public;type;ProjectionMethod
public;interface;ProjectionProps
beta;type;PropertyCallback
deprecated;type;PropertyCallback
beta;class;PropertyMetaData
deprecated;class;PropertyMetaData
public;class;PropertyMetaDataMap
beta;interface;PropertyMetaDataProps
deprecated;interface;PropertyMetaDataProps
internal;interface;PullChangesOptions
public;class;QParams2d
alpha;interface;QParams2dProps
public;class;QParams3d
alpha;interface;QParams3dProps
public;class;QPoint2d
public;interface;QPoint2dBuffer
public;namespace;QPoint2dBuffer
public;class;QPoint2dBufferBuilder
public;class;QPoint2dList
public;class;QPoint3d
public;interface;QPoint3dBuffer
public;namespace;QPoint3dBuffer
public;class;QPoint3dBufferBuilder
public;class;QPoint3dList
public;namespace;Quantization
public;class;QueryBinder
public;interface;QueryLimit
public;interface;QueryOptions
public;class;QueryOptionsBuilder
internal;enum;QueryParamType
public;interface;QueryPropertyMetaData
public;interface;QueryQuota
public;enum;QueryRowFormat
public;interface;QueryRowProxy
public;interface;QueryStats
public;type;QueryValueType
public;enum;Rank
preview;enum;Rank
internal;interface;ReadableFormData
beta;function;readElementMeshes
internal;function;readTileContentDescription
deprecated;function;readTileContentDescription
beta;interface;RealityData
beta;interface;RealityDataAccess
beta;enum;RealityDataFormat
beta;namespace;RealityDataFormat
beta;enum;RealityDataProvider
beta;interface;RealityDataSourceKey
beta;namespace;RealityDataSourceKey
beta;interface;RealityDataSourceProps
beta;interface;RealityModelDisplayProps
beta;class;RealityModelDisplaySettings
internal;const;REGISTRY
beta;interface;ReinstateTxnArgs
public;class;RelatedElement
preview;class;RelatedElement
public;interface;RelatedElementProps
preview;interface;RelatedElementProps
public;interface;RelationshipProps
preview;interface;RelationshipProps
internal;interface;RelTypeInfo
public;type;RemoveFunction
public;interface;RenderFeatureTable
public;class;RenderMaterial
public;interface;RenderMaterialAssetMapsProps
public;interface;RenderMaterialAssetProps
internal;class;RenderMaterialParams
public;interface;RenderMaterialProps
public;enum;RenderMode
public;namespace;RenderSchedule
internal;interface;EditingChanges
internal;class;Interval
public;class;RenderTexture
public;namespace;RenderTexture
internal;class;RenderTextureParams
public;interface;RenderTimelineLoadProps
preview;interface;RenderTimelineLoadProps
public;interface;RenderTimelineProps
preview;interface;RenderTimelineProps
public;interface;RepositoryLinkProps
preview;interface;RepositoryLinkProps
public;interface;RequestNewBriefcaseProps
internal;class;ResponseLike
beta;interface;ReverseTxnArgs
public;class;RgbColor
public;interface;RgbColorProps
public;type;RgbFactorProps
public;interface;RootSubjectProps
public;interface;RpcActivity
internal;type;RpcActivityRun
beta;class;RpcConfiguration
internal;type;RpcConfigurationSupplier
public;enum;RpcContentType
deprecated;enum;RpcContentType
internal;class;RpcControlChannel
public;class;RpcControlResponse
internal;class;RpcDefaultConfiguration
internal;class;RpcDirectProtocol
internal;class;RpcDirectRequest
public;enum;RpcEndpoint
deprecated;enum;RpcEndpoint
public;class;RpcInterface
beta;interface;RpcInterfaceDefinition
beta;interface;RpcInterfaceEndpoints
beta;type;RpcInterfaceImplementation
internal;class;RpcInvocation
internal;interface;RpcManagedStatus
beta;class;RpcManager
internal;class;RpcMarshaling
internal;class;RpcMultipart
public;class;RpcNotFoundResponse
internal;class;RpcOpenAPIDescription
internal;class;RpcOperation
internal;namespace;RpcOperation
internal;class;RpcOperationPolicy
internal;type;RpcOperationPolicyProps
internal;interface;RpcOperationsProfile
internal;const;rpcOverIpcStrings
internal;class;RpcPendingQueue
public;class;RpcPendingResponse
internal;class;RpcProtocol
public;enum;RpcProtocolEvent
deprecated;enum;RpcProtocolEvent
internal;type;RpcProtocolEventHandler
internal;enum;RpcProtocolVersion
internal;class;RpcPushChannel
internal;class;RpcPushConnection
internal;type;RpcPushMessageListener
internal;class;RpcPushService
internal;class;RpcPushSubscription
internal;class;RpcPushTransport
internal;class;RpcRegistry
internal;class;RpcRequest
internal;type;RpcRequestCallback_T
internal;interface;RpcRequestContext
public;enum;RpcRequestEvent
deprecated;enum;RpcRequestEvent
internal;type;RpcRequestEventHandler
internal;interface;RpcRequestFulfillment
internal;namespace;RpcRequestFulfillment
internal;type;RpcRequestInitialRetryIntervalSupplier_T
internal;type;RpcRequestNotFoundHandler
public;enum;RpcRequestStatus
deprecated;enum;RpcRequestStatus
public;namespace;RpcRequestStatus
deprecated;namespace;RpcRequestStatus
internal;type;RpcRequestTokenSupplier_T
public;enum;RpcResponseCacheControl
internal;type;RpcResponseCachingCallback_T
internal;interface;RpcRoutingMap
internal;namespace;RpcRoutingMap
beta;class;RpcRoutingToken
internal;interface;RpcSerializedValue
internal;namespace;RpcSerializedValue
internal;class;RpcSessionInvocation
alpha;interface;RscFontEncodingProps
beta;type;Run
beta;namespace;Run
beta;interface;RunLayoutResult
beta;type;RunProps
beta;interface;SaveChangesArgs
public;enum;SchemaState
public;interface;SectionDrawingLocationProps
preview;interface;SectionDrawingLocationProps
public;interface;SectionDrawingProps
preview;interface;SectionDrawingProps
public;interface;SectionDrawingViewProps
public;enum;SectionType
preview;enum;SectionType
public;interface;SerializedRpcActivity
internal;interface;SerializedRpcOperation
internal;interface;SerializedRpcRequest
beta;namespace;ServerBasedLocksError
public;class;ServerError
public;class;ServerTimeoutError
public;interface;SessionProps
beta;interface;SheetBorderTemplateProps
beta;interface;SheetIndexEntryProps
beta;type;SheetIndexFolderProps
beta;interface;SheetIndexReferenceProps
beta;interface;SheetInformation
beta;type;SheetInformationAspectProps
beta;interface;SheetInformationProps
public;interface;SheetProps
preview;interface;SheetProps
beta;interface;SheetReferenceProps
beta;interface;SheetTemplateProps
internal;class;SilhouetteEdgeArgs
public;class;SkyBox
public;type;SkyBoxImageProps
public;enum;SkyBoxImageType
public;interface;SkyBoxProps
public;class;SkyCube
public;interface;SkyCubeImageProps
public;interface;SkyCubeProps
public;class;SkyGradient
public;type;SkyGradientProperties
public;class;SkySphere
public;interface;SkySphereImageProps
internal;interface;SnapRequestProps
internal;interface;SnapResponseProps
internal;class;SnapshotIModelRpcInterface
deprecated;class;SnapshotIModelRpcInterface
public;interface;SnapshotOpenOptions
public;class;SolarLight
public;interface;SolarLightProps
public;class;SolarShadowSettings
public;interface;SolarShadowSettingsProps
public;interface;SourceAndTarget
preview;interface;SourceAndTarget
public;class;SpatialClassifier
public;class;SpatialClassifierFlags
public;interface;SpatialClassifierFlagsProps
public;enum;SpatialClassifierInsideDisplay
public;enum;SpatialClassifierOutsideDisplay
public;interface;SpatialClassifierProps
public;class;SpatialClassifiers
public;interface;SpatialClassifiersContainer
public;interface;SpatialViewDefinitionProps
beta;interface;SqliteError
beta;namespace;SqliteError
beta;type;StackedFractionType
public;type;StandaloneOpenOptions
beta;type;StorageValue
beta;type;StructuralTextBlockComponent
public;class;SubCategoryAppearance
public;namespace;SubCategoryAppearance
public;class;SubCategoryOverride
public;interface;SubCategoryPlanarClipMaskArgs
public;interface;SubCategoryProps
preview;interface;SubCategoryProps
internal;interface;SubCategoryResultRow
public;interface;SubjectProps
preview;interface;SubjectProps
public;type;SubLayerId
beta;interface;SynchronizationConfigLinkProps
public;enum;SyncMode
beta;class;TabRun
beta;interface;TabRunProps
beta;type;TerminatorShape
beta;const;terminatorShapes
public;enum;TerrainHeightOriginMode
public;interface;TerrainProps
public;class;TerrainSettings
internal;class;TestRpcManager
beta;class;TextAnnotation
public;interface;TextAnnotation2dProps
preview;interface;TextAnnotation2dProps
public;interface;TextAnnotation3dProps
preview;interface;TextAnnotation3dProps
beta;interface;TextAnnotationAnchor
beta;interface;TextAnnotationCreateArgs
beta;type;TextAnnotationFillColor
beta;type;TextAnnotationFrameShape
beta;const;textAnnotationFrameShapes
beta;interface;TextAnnotationLeader
beta;interface;TextAnnotationLeaderProps
beta;interface;TextAnnotationProps
beta;class;TextBlock
beta;class;TextBlockComponent
beta;interface;TextBlockComponentProps
beta;interface;TextBlockGeometryProps
beta;type;TextBlockGeometryPropsEntry
beta;interface;TextBlockLayoutResult
beta;interface;TextBlockMargins
beta;interface;TextBlockProps
beta;interface;TextBlockStringifyContext
beta;interface;TextBlockStringifyOptions
beta;interface;TextFrameStyleProps
beta;type;TextJustification
beta;interface;TextLeaderStyleProps
beta;class;TextRun
beta;interface;TextRunProps
public;class;TextString
beta;interface;TextStringGlyphData
public;interface;TextStringPrimitive
public;interface;TextStringProps
beta;type;TextStyleColor
beta;class;TextStyleSettings
beta;interface;TextStyleSettingsProps
public;interface;TextureData
public;type;TextureImageSpec
public;interface;TextureLoadProps
public;class;TextureMapping
public;namespace;TextureMapping
public;interface;TextureMapProps
public;enum;TextureMapUnits
public;interface;TextureProps
public;enum;TextureTransparency
public;class;ThematicDisplay
public;enum;ThematicDisplayMode
public;interface;ThematicDisplayProps
public;class;ThematicDisplaySensor
public;interface;ThematicDisplaySensorProps
public;class;ThematicDisplaySensorSettings
public;interface;ThematicDisplaySensorSettingsProps
public;enum;ThematicGradientColorScheme
public;enum;ThematicGradientMode
public;class;ThematicGradientSettings
public;interface;ThematicGradientSettingsProps
public;enum;ThematicGradientTransparencyMode
public;interface;ThumbnailFormatProps
public;interface;ThumbnailProps
internal;interface;TileContentDescription
beta;interface;TileContentIdentifier