@bettergi/types 0.1.13 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/bindings/AutoBossParam.d.ts +12 -0
- package/bindings/AutoDomainParam.d.ts +12 -0
- package/bindings/AutoFightParam.d.ts +12 -0
- package/bindings/AutoLeyLineOutcropParam.d.ts +13 -0
- package/bindings/AutoSkipConfig.d.ts +12 -0
- package/bindings/AutoStygianOnslaughtParam.d.ts +13 -0
- package/bindings/Avatar.d.ts +12 -0
- package/bindings/BvImage.d.ts +12 -0
- package/bindings/BvLocator.d.ts +12 -0
- package/bindings/BvPage.d.ts +12 -0
- package/bindings/CancellationToken.d.ts +12 -0
- package/bindings/CancellationTokenSource.d.ts +12 -0
- package/bindings/CombatScenes.d.ts +12 -0
- package/bindings/CountInventoryItemParam.d.ts +12 -0
- package/bindings/DesktopRegion.d.ts +12 -0
- package/bindings/GameCaptureRegion.d.ts +12 -0
- package/bindings/GridScreenName.d.ts +12 -0
- package/bindings/ImageRegion.d.ts +12 -0
- package/bindings/ItemIconRecognitionMode.d.ts +12 -0
- package/bindings/KeyMouseHook.d.ts +12 -0
- package/bindings/Mat.d.ts +12 -0
- package/bindings/OpenCvSharp.d.ts +1035 -0
- package/bindings/Point2f.d.ts +12 -0
- package/bindings/PostMessage.d.ts +12 -0
- package/bindings/RealtimeTimer.d.ts +12 -0
- package/bindings/RecognitionObject.d.ts +12 -0
- package/bindings/Region.d.ts +12 -0
- package/bindings/ServerTime.d.ts +12 -0
- package/bindings/SoloTask.d.ts +12 -0
- package/bindings/Task.d.ts +12 -0
- package/bindings/captureGameRegion.d.ts +17 -0
- package/bindings/click.d.ts +21 -0
- package/bindings/dispatcher.d.ts +11 -0
- package/bindings/file.d.ts +11 -0
- package/bindings/genshin.d.ts +11 -0
- package/bindings/getAvatars.d.ts +16 -0
- package/bindings/getGameMetrics.d.ts +16 -0
- package/bindings/getVersion.d.ts +16 -0
- package/bindings/host.d.ts +30 -0
- package/bindings/htmlMask.d.ts +16 -0
- package/bindings/htmlMask.webview.d.ts +92 -0
- package/bindings/http.d.ts +11 -0
- package/bindings/inputText.d.ts +17 -0
- package/bindings/keyDown.d.ts +18 -0
- package/bindings/keyMouseScript.d.ts +11 -0
- package/bindings/keyPress.d.ts +18 -0
- package/bindings/keyUp.d.ts +18 -0
- package/bindings/leftButtonClick.d.ts +17 -0
- package/bindings/leftButtonDown.d.ts +17 -0
- package/bindings/leftButtonUp.d.ts +17 -0
- package/bindings/log.d.ts +11 -0
- package/bindings/middleButtonClick.d.ts +17 -0
- package/bindings/middleButtonDown.d.ts +17 -0
- package/bindings/middleButtonUp.d.ts +17 -0
- package/bindings/moveMouseBy.d.ts +21 -0
- package/bindings/moveMouseTo.d.ts +21 -0
- package/bindings/notification.d.ts +11 -0
- package/bindings/pathingScript.d.ts +11 -0
- package/bindings/rightButtonClick.d.ts +17 -0
- package/bindings/rightButtonDown.d.ts +17 -0
- package/bindings/rightButtonUp.d.ts +17 -0
- package/bindings/setGameMetrics.d.ts +38 -0
- package/bindings/settings.d.ts +8 -0
- package/bindings/sleep.d.ts +20 -0
- package/bindings/strategyFile.d.ts +11 -0
- package/bindings/verticalScroll.d.ts +21 -0
- package/index.d.ts +104 -69
- package/package.json +21 -4
- package/types/BetterGI/ScriptSettings.d.ts +22 -0
- package/types/BetterGenshinImpact/Core/BgiVision/BvImage.d.ts +46 -13
- package/types/BetterGenshinImpact/Core/BgiVision/BvLocator.d.ts +192 -54
- package/types/BetterGenshinImpact/Core/BgiVision/BvPage.d.ts +130 -49
- package/types/BetterGenshinImpact/Core/Recognition/ONNX/BgiYoloPredictor.d.ts +54 -0
- package/types/BetterGenshinImpact/Core/Recognition/OcrEngineTypes.d.ts +39 -10
- package/types/BetterGenshinImpact/Core/Recognition/RecognitionObject.d.ts +290 -190
- package/types/BetterGenshinImpact/Core/Recognition/RecognitionTypes.d.ts +59 -21
- package/types/BetterGenshinImpact/Core/Recognition/SearchOptions.d.ts +100 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/AutoPathingScript.d.ts +91 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/CustomHostFunctions.d.ts +48 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/Dispatcher.d.ts +203 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/Genshin.d.ts +438 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/HtmlMask.d.ts +203 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/Http.d.ts +102 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/KeyMouseHook.d.ts +109 -68
- package/types/BetterGenshinImpact/Core/Script/Dependence/KeyMouseScript.d.ts +45 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/LimitedFile.d.ts +180 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/Log.d.ts +72 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/Model/RealtimeTimer.d.ts +55 -28
- package/types/BetterGenshinImpact/Core/Script/Dependence/Model/SoloTask.d.ts +126 -20
- package/types/BetterGenshinImpact/Core/Script/Dependence/Notification.d.ts +49 -0
- package/types/BetterGenshinImpact/Core/Script/Dependence/ServerTime.d.ts +25 -5
- package/types/BetterGenshinImpact/Core/Script/Dependence/Simulator/PostMessage.d.ts +57 -12
- package/types/BetterGenshinImpact/Core/Script/Dependence/StrategyFile.d.ts +66 -0
- package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossConfig.d.ts +102 -0
- package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossParam.d.ts +135 -0
- package/types/BetterGenshinImpact/GameTask/AutoBoss/AutoBossTask.d.ts +55 -0
- package/types/BetterGenshinImpact/GameTask/AutoDomain/AutoDomainParam.d.ts +160 -72
- package/types/BetterGenshinImpact/GameTask/AutoDomain/AutoDomainTask.d.ts +89 -30
- package/types/BetterGenshinImpact/GameTask/AutoFight/Assets/AutoFightAssets.d.ts +144 -0
- package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightConfig.d.ts +266 -0
- package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightParam.d.ts +252 -105
- package/types/BetterGenshinImpact/GameTask/AutoFight/AutoFightTask.d.ts +69 -31
- package/types/BetterGenshinImpact/GameTask/AutoFight/Config/CombatAvatar.d.ts +67 -25
- package/types/BetterGenshinImpact/GameTask/AutoFight/Model/Avatar.d.ts +373 -161
- package/types/BetterGenshinImpact/GameTask/AutoFight/Model/AvatarActiveCheckContext.d.ts +39 -5
- package/types/BetterGenshinImpact/GameTask/AutoFight/Model/CombatScenes.d.ts +237 -58
- package/types/BetterGenshinImpact/GameTask/AutoFight/Model/MultiGameStatus.d.ts +48 -13
- package/types/BetterGenshinImpact/GameTask/AutoFight/Script/CombatCommand.d.ts +82 -0
- package/types/BetterGenshinImpact/GameTask/AutoFight/Script/CombatScript.d.ts +63 -0
- package/types/BetterGenshinImpact/GameTask/AutoFight/Script/Method.d.ts +171 -0
- package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropConfig.d.ts +141 -0
- package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropFightConfig.d.ts +243 -41
- package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropParam.d.ts +165 -64
- package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/AutoLeyLineOutcropTask.d.ts +47 -14
- package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/MaterialInfo.d.ts +49 -0
- package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/Waypoint.d.ts +173 -0
- package/types/BetterGenshinImpact/GameTask/AutoPathing/Model/WaypointForTrack.d.ts +105 -0
- package/types/BetterGenshinImpact/GameTask/AutoPathing/NavigationInstance.d.ts +102 -0
- package/types/BetterGenshinImpact/GameTask/AutoPathing/PathingScriptNames.d.ts +82 -0
- package/types/BetterGenshinImpact/GameTask/AutoSkip/AutoSkipConfig.d.ts +212 -113
- package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtConfig.d.ts +98 -33
- package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtParam.d.ts +134 -63
- package/types/BetterGenshinImpact/GameTask/AutoStygianOnslaught/AutoStygianOnslaughtTask.d.ts +178 -11
- package/types/BetterGenshinImpact/GameTask/CaptureContent.d.ts +87 -0
- package/types/BetterGenshinImpact/GameTask/Common/BgiVision/BvStatus.d.ts +50 -0
- package/types/BetterGenshinImpact/GameTask/Common/Job/CountInventoryItemParam.d.ts +70 -0
- package/types/BetterGenshinImpact/GameTask/Common/Job/CraftMaterialTask.d.ts +85 -0
- package/types/BetterGenshinImpact/GameTask/Common/Job/ItemIconRecognitionMode.d.ts +43 -0
- package/types/BetterGenshinImpact/GameTask/Common/Map/MapScriptNames.d.ts +46 -0
- package/types/BetterGenshinImpact/GameTask/Common/Reward/RewardItem.d.ts +80 -0
- package/types/BetterGenshinImpact/GameTask/Common/StateMachine/StateMachineBase.d.ts +43 -0
- package/types/BetterGenshinImpact/GameTask/ISoloTask.d.ts +76 -4
- package/types/BetterGenshinImpact/GameTask/Model/Area/Converter/INodeConverter.d.ts +43 -9
- package/types/BetterGenshinImpact/GameTask/Model/Area/DesktopRegion.d.ts +134 -51
- package/types/BetterGenshinImpact/GameTask/Model/Area/GameCaptureRegion.d.ts +184 -71
- package/types/BetterGenshinImpact/GameTask/Model/Area/ImageRegion.d.ts +171 -95
- package/types/BetterGenshinImpact/GameTask/Model/Area/Region.d.ts +471 -226
- package/types/BetterGenshinImpact/GameTask/Model/BaseTaskParam.d.ts +37 -5
- package/types/BetterGenshinImpact/GameTask/Model/GameUI/GridScreenName.d.ts +95 -0
- package/types/BetterGenshinImpact/GameTask/Model/ISystemInfo.d.ts +90 -0
- package/types/BetterGenshinImpact/Helpers/User32Helper.d.ts +223 -224
- package/types/BetterGenshinImpact/View/Drawable/DrawContent.d.ts +112 -35
- package/types/BetterGenshinImpact/View/Drawable/LineDrawable.d.ts +67 -12
- package/types/BetterGenshinImpact/View/Drawable/RectDrawable.d.ts +71 -20
- package/types/BetterGenshinImpact/View/Drawable/TextDrawable.d.ts +59 -0
- package/types/CommunityToolkit/Mvvm/ComponentModel/ObservableObject.d.ts +35 -0
- package/types/Compunet/YoloSharp/Metadata/YoloArchitecture.d.ts +28 -0
- package/types/Compunet/YoloSharp/Metadata/YoloMetadata.d.ts +38 -0
- package/types/Compunet/YoloSharp/Metadata/YoloName.d.ts +27 -0
- package/types/Compunet/YoloSharp/Metadata/YoloTask.d.ts +31 -0
- package/types/Compunet/YoloSharp/YoloConfiguration.d.ts +36 -0
- package/types/Compunet/YoloSharp/YoloPredictor.d.ts +39 -0
- package/types/Compunet/YoloSharp/YoloPredictorOptions.d.ts +33 -0
- package/types/Fischless/WindowsInput/IKeyboardSimulator.d.ts +83 -56
- package/types/Fischless/WindowsInput/IMouseSimulator.d.ts +65 -51
- package/types/Microsoft/ClearScript/AsyncDocumentLoadCallback.d.ts +39 -0
- package/types/Microsoft/ClearScript/ContinuationCallback.d.ts +29 -0
- package/types/Microsoft/ClearScript/CustomAttributeLoader.d.ts +34 -0
- package/types/Microsoft/ClearScript/Document.d.ts +22 -0
- package/types/Microsoft/ClearScript/DocumentAccessFlags.d.ts +29 -0
- package/types/Microsoft/ClearScript/DocumentCategory.d.ts +20 -0
- package/types/Microsoft/ClearScript/DocumentContextCallback.d.ts +35 -0
- package/types/Microsoft/ClearScript/DocumentFlags.d.ts +25 -0
- package/types/Microsoft/ClearScript/DocumentInfo.d.ts +31 -0
- package/types/Microsoft/ClearScript/DocumentLoadCallback.d.ts +32 -0
- package/types/Microsoft/ClearScript/DocumentLoader.d.ts +47 -0
- package/types/Microsoft/ClearScript/DocumentSettings.d.ts +54 -0
- package/types/Microsoft/ClearScript/HostEvent.d.ts +27 -0
- package/types/Microsoft/ClearScript/HostFunctions.d.ts +109 -0
- package/types/Microsoft/ClearScript/HostItemFlags.d.ts +27 -0
- package/types/Microsoft/ClearScript/HostType.d.ts +181 -0
- package/types/Microsoft/ClearScript/HostTypeCollection.d.ts +11 -0
- package/types/Microsoft/ClearScript/HostVariable.d.ts +66 -0
- package/types/Microsoft/ClearScript/IScriptEngine.d.ts +207 -0
- package/types/Microsoft/ClearScript/IScriptObject.d.ts +55 -0
- package/types/Microsoft/ClearScript/IScriptableObject.d.ts +32 -0
- package/types/Microsoft/ClearScript/PropertyBag.d.ts +28 -0
- package/types/Microsoft/ClearScript/ScriptAccess.d.ts +25 -0
- package/types/Microsoft/ClearScript/ScriptEngine.d.ts +202 -0
- package/types/Microsoft/ClearScript/ScriptObject.d.ts +69 -0
- package/types/Microsoft/ClearScript/Undefined.d.ts +15 -0
- package/types/Microsoft/ClearScript/V8/V8ProxyHelpers.d.ts +7 -0
- package/types/Microsoft/ClearScript/ValueRef.d.ts +25 -0
- package/types/Microsoft/ClearScript/VoidResult.d.ts +15 -0
- package/types/Microsoft/Extensions/Localization/IStringLocalizer.d.ts +71 -6
- package/types/Microsoft/Extensions/Localization/LocalizedString.d.ts +24 -20
- package/types/Microsoft/Extensions/Logging/EventId.d.ts +33 -0
- package/types/Microsoft/Extensions/Logging/ILogger.d.ts +42 -0
- package/types/Microsoft/Extensions/Logging/LogLevel.d.ts +29 -0
- package/types/Microsoft/ML/OnnxRuntime/CoreMLFlags.d.ts +30 -0
- package/types/Microsoft/ML/OnnxRuntime/DisposableNamedOnnxValue.d.ts +28 -0
- package/types/Microsoft/ML/OnnxRuntime/ExecutionMode.d.ts +24 -0
- package/types/Microsoft/ML/OnnxRuntime/FixedBufferOnnxValue.d.ts +47 -0
- package/types/Microsoft/ML/OnnxRuntime/GraphOptimizationLevel.d.ts +29 -0
- package/types/Microsoft/ML/OnnxRuntime/IDisposableReadOnlyCollection.d.ts +51 -0
- package/types/Microsoft/ML/OnnxRuntime/InferenceSession.d.ts +200 -0
- package/types/Microsoft/ML/OnnxRuntime/MapMetadata.d.ts +20 -0
- package/types/Microsoft/ML/OnnxRuntime/ModelMetadata.d.ts +24 -0
- package/types/Microsoft/ML/OnnxRuntime/NamedOnnxValue.d.ts +46 -0
- package/types/Microsoft/ML/OnnxRuntime/NnapiFlags.d.ts +28 -0
- package/types/Microsoft/ML/OnnxRuntime/NodeMetadata.d.ts +37 -0
- package/types/Microsoft/ML/OnnxRuntime/OnnxValueType.d.ts +29 -0
- package/types/Microsoft/ML/OnnxRuntime/OptionalMetadata.d.ts +18 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtAllocator.d.ts +38 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtAllocatorType.d.ts +24 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtCUDAProviderOptions.d.ts +35 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtExternalAllocation.d.ts +43 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtIoBinding.d.ts +74 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtLoggingLevel.d.ts +27 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtLoraAdapter.d.ts +36 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtMapTypeInfo.d.ts +21 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtMemType.d.ts +26 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtMemoryAllocation.d.ts +28 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtMemoryInfo.d.ts +61 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtROCMProviderOptions.d.ts +35 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtSequenceOrOptionalTypeInfo.d.ts +23 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtTensorRTProviderOptions.d.ts +40 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtTensorTypeAndShapeInfo.d.ts +27 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtTypeInfo.d.ts +25 -0
- package/types/Microsoft/ML/OnnxRuntime/OrtValue.d.ts +184 -0
- package/types/Microsoft/ML/OnnxRuntime/PrePackedWeightsContainer.d.ts +30 -0
- package/types/Microsoft/ML/OnnxRuntime/RunOptions.d.ts +49 -0
- package/types/Microsoft/ML/OnnxRuntime/SequenceMetadata.d.ts +18 -0
- package/types/Microsoft/ML/OnnxRuntime/SessionOptions.d.ts +170 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/DenseTensor.d.ts +64 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/Tensor.d.ts +117 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorBase.d.ts +31 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorElementType.d.ts +39 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorElementTypeInfo.d.ts +31 -0
- package/types/Microsoft/ML/OnnxRuntime/Tensors/TensorTypeInfo.d.ts +32 -0
- package/types/Microsoft/Win32/SafeHandles/SafeFileHandle.d.ts +33 -0
- package/types/Microsoft/Win32/SafeHandles/SafeHandleZeroOrMinusOneIsInvalid.d.ts +24 -0
- package/types/Microsoft/Win32/SafeHandles/SafeProcessHandle.d.ts +30 -0
- package/types/Microsoft/Win32/SafeHandles/SafeWaitHandle.d.ts +30 -0
- package/types/OpenCvSharp/AKAZE.d.ts +90 -0
- package/types/OpenCvSharp/AKAZEDescriptorType.d.ts +26 -0
- package/types/OpenCvSharp/AccessFlag.d.ts +27 -0
- package/types/OpenCvSharp/AdaptiveThresholdTypes.d.ts +27 -0
- package/types/OpenCvSharp/AgastFeatureDetector.d.ts +76 -0
- package/types/OpenCvSharp/Algorithm.d.ts +31 -0
- package/types/OpenCvSharp/AlgorithmParamType.d.ts +34 -0
- package/types/OpenCvSharp/Aruco/CornerRefineMethod.d.ts +26 -0
- package/types/OpenCvSharp/Aruco/CvAruco.d.ts +118 -0
- package/types/OpenCvSharp/Aruco/DetectorParameters.d.ts +60 -0
- package/types/OpenCvSharp/Aruco/Dictionary.d.ts +74 -0
- package/types/OpenCvSharp/Aruco/PredefinedDictionaryName.d.ts +46 -0
- package/types/OpenCvSharp/BFMatcher.d.ts +29 -0
- package/types/OpenCvSharp/BOWImgDescriptorExtractor.d.ts +76 -0
- package/types/OpenCvSharp/BOWKMeansTrainer.d.ts +52 -0
- package/types/OpenCvSharp/BOWTrainer.d.ts +34 -0
- package/types/OpenCvSharp/BRISK.d.ts +91 -0
- package/types/OpenCvSharp/BackgroundSubtractor.d.ts +41 -0
- package/types/OpenCvSharp/BackgroundSubtractorGMG.d.ts +63 -0
- package/types/OpenCvSharp/BackgroundSubtractorKNN.d.ts +60 -0
- package/types/OpenCvSharp/BackgroundSubtractorMOG.d.ts +57 -0
- package/types/OpenCvSharp/BackgroundSubtractorMog2.d.ts +70 -0
- package/types/OpenCvSharp/BorderTypes.d.ts +30 -0
- package/types/OpenCvSharp/BroxOpticalFlow.d.ts +32 -0
- package/types/OpenCvSharp/ButtonType.d.ts +25 -0
- package/types/OpenCvSharp/CLAHE.d.ts +44 -0
- package/types/OpenCvSharp/CalibrateCRF.d.ts +32 -0
- package/types/OpenCvSharp/CalibrateDebevec.d.ts +44 -0
- package/types/OpenCvSharp/CalibrateRobertson.d.ts +43 -0
- package/types/OpenCvSharp/CalibrationFlags.d.ts +40 -0
- package/types/OpenCvSharp/CameraChannels.d.ts +27 -0
- package/types/OpenCvSharp/CapturePosRatio.d.ts +24 -0
- package/types/OpenCvSharp/CaptureType.d.ts +25 -0
- package/types/OpenCvSharp/CascadeClassifier.d.ts +147 -0
- package/types/OpenCvSharp/ChessboardFlags.d.ts +29 -0
- package/types/OpenCvSharp/CircleSegment.d.ts +33 -0
- package/types/OpenCvSharp/CmpType.d.ts +28 -0
- package/types/OpenCvSharp/ColorConversionCodes.d.ts +223 -0
- package/types/OpenCvSharp/ColormapTypes.d.ts +44 -0
- package/types/OpenCvSharp/ConnectedComponent.d.ts +86 -0
- package/types/OpenCvSharp/ConnectedComponentsAlgorithmsTypes.d.ts +33 -0
- package/types/OpenCvSharp/ConnectedComponentsTypes.d.ts +30 -0
- package/types/OpenCvSharp/ContourApproximationModes.d.ts +30 -0
- package/types/OpenCvSharp/ConvertImageModes.d.ts +25 -0
- package/types/OpenCvSharp/CovarFlags.d.ts +28 -0
- package/types/OpenCvSharp/CpuFeatures.d.ts +61 -0
- package/types/OpenCvSharp/CriteriaTypes.d.ts +25 -0
- package/types/OpenCvSharp/Cv2.d.ts +6773 -0
- package/types/OpenCvSharp/CvErrorCallback.d.ts +48 -0
- package/types/OpenCvSharp/CvObject.d.ts +19 -0
- package/types/OpenCvSharp/CvTrackbar.d.ts +38 -0
- package/types/OpenCvSharp/DMatch.d.ts +58 -0
- package/types/OpenCvSharp/DctFlags.d.ts +25 -0
- package/types/OpenCvSharp/DecompTypes.d.ts +28 -0
- package/types/OpenCvSharp/DenseOpticalFlowExt.d.ts +48 -0
- package/types/OpenCvSharp/DescriptorMatcher.d.ts +133 -0
- package/types/OpenCvSharp/Detail/AffineBestOf2NearestMatcher.d.ts +48 -0
- package/types/OpenCvSharp/Detail/BestOf2NearestMatcher.d.ts +49 -0
- package/types/OpenCvSharp/Detail/CvDetail.d.ts +45 -0
- package/types/OpenCvSharp/Detail/FeaturesMatcher.d.ts +41 -0
- package/types/OpenCvSharp/Detail/ImageFeatures.d.ts +60 -0
- package/types/OpenCvSharp/Detail/MatchesInfo.d.ts +47 -0
- package/types/OpenCvSharp/Detail/Stitcher.d.ts +156 -0
- package/types/OpenCvSharp/DftFlags.d.ts +28 -0
- package/types/OpenCvSharp/DisposableCvObject.d.ts +28 -0
- package/types/OpenCvSharp/DisposableObject.d.ts +22 -0
- package/types/OpenCvSharp/DistanceTransformLabelTypes.d.ts +28 -0
- package/types/OpenCvSharp/DistanceTransformMasks.d.ts +28 -0
- package/types/OpenCvSharp/DistanceTypes.d.ts +30 -0
- package/types/OpenCvSharp/DistributionType.d.ts +24 -0
- package/types/OpenCvSharp/Dnn/Backend.d.ts +28 -0
- package/types/OpenCvSharp/Dnn/CvDnn.d.ts +228 -0
- package/types/OpenCvSharp/Dnn/Net.d.ts +126 -0
- package/types/OpenCvSharp/Dnn/Target.d.ts +31 -0
- package/types/OpenCvSharp/DnnSuperres/DnnSuperResImpl.d.ts +69 -0
- package/types/OpenCvSharp/DrawMatchesFlags.d.ts +26 -0
- package/types/OpenCvSharp/DualTVL1OpticalFlow.d.ts +44 -0
- package/types/OpenCvSharp/EM.d.ts +171 -0
- package/types/OpenCvSharp/EdgePreservingMethods.d.ts +27 -0
- package/types/OpenCvSharp/ErrorCode.d.ts +77 -0
- package/types/OpenCvSharp/EssentialMatMethod.d.ts +24 -0
- package/types/OpenCvSharp/FASTType.d.ts +25 -0
- package/types/OpenCvSharp/Face/BasicFaceRecognizer.d.ts +55 -0
- package/types/OpenCvSharp/Face/EigenFaceRecognizer.d.ts +39 -0
- package/types/OpenCvSharp/Face/FaceRecognizer.d.ts +72 -0
- package/types/OpenCvSharp/Face/Facemark.d.ts +33 -0
- package/types/OpenCvSharp/Face/FacemarkAAM.d.ts +67 -0
- package/types/OpenCvSharp/Face/FacemarkLBF.d.ts +96 -0
- package/types/OpenCvSharp/Face/FisherFaceRecognizer.d.ts +39 -0
- package/types/OpenCvSharp/Face/LBPHFaceRecognizer.d.ts +86 -0
- package/types/OpenCvSharp/FarnebackOpticalFlow.d.ts +36 -0
- package/types/OpenCvSharp/FastFeatureDetector.d.ts +41 -0
- package/types/OpenCvSharp/Feature2D.d.ts +86 -0
- package/types/OpenCvSharp/Features2D/SIFT.d.ts +51 -0
- package/types/OpenCvSharp/FileNode.d.ts +274 -0
- package/types/OpenCvSharp/FileNodeIterator.d.ts +73 -0
- package/types/OpenCvSharp/FileStorage.d.ts +240 -0
- package/types/OpenCvSharp/FindCirclesGridFlags.d.ts +28 -0
- package/types/OpenCvSharp/FishEyeCalibrationFlags.d.ts +36 -0
- package/types/OpenCvSharp/Flann/AutotunedIndexParams.d.ts +46 -0
- package/types/OpenCvSharp/Flann/CompositeIndexParams.d.ts +56 -0
- package/types/OpenCvSharp/Flann/FlannCentersInit.d.ts +25 -0
- package/types/OpenCvSharp/Flann/FlannDistance.d.ts +35 -0
- package/types/OpenCvSharp/Flann/Index.d.ts +92 -0
- package/types/OpenCvSharp/Flann/IndexParams.d.ts +60 -0
- package/types/OpenCvSharp/Flann/KDTreeIndexParams.d.ts +28 -0
- package/types/OpenCvSharp/Flann/KMeansIndexParams.d.ts +46 -0
- package/types/OpenCvSharp/Flann/LinearIndexParams.d.ts +29 -0
- package/types/OpenCvSharp/Flann/LshIndexParams.d.ts +31 -0
- package/types/OpenCvSharp/Flann/SavedIndexParams.d.ts +22 -0
- package/types/OpenCvSharp/Flann/SearchParams.d.ts +38 -0
- package/types/OpenCvSharp/FlannBasedMatcher.d.ts +39 -0
- package/types/OpenCvSharp/FlipMode.d.ts +25 -0
- package/types/OpenCvSharp/FloodFillFlags.d.ts +26 -0
- package/types/OpenCvSharp/FormatType.d.ts +28 -0
- package/types/OpenCvSharp/FourCC.d.ts +85 -0
- package/types/OpenCvSharp/FrameSource.d.ts +42 -0
- package/types/OpenCvSharp/FundamentalMatMethods.d.ts +29 -0
- package/types/OpenCvSharp/GFTTDetector.d.ts +71 -0
- package/types/OpenCvSharp/GemmFlags.d.ts +26 -0
- package/types/OpenCvSharp/GeneralizedHough.d.ts +77 -0
- package/types/OpenCvSharp/GeneralizedHoughBallard.d.ts +30 -0
- package/types/OpenCvSharp/GeneralizedHoughGuil.d.ts +54 -0
- package/types/OpenCvSharp/GrabCutClasses.d.ts +26 -0
- package/types/OpenCvSharp/GrabCutModes.d.ts +25 -0
- package/types/OpenCvSharp/HOGDescriptor.d.ts +419 -0
- package/types/OpenCvSharp/HaarDetectionTypes.d.ts +26 -0
- package/types/OpenCvSharp/HandEyeCalibrationMethod.d.ts +30 -0
- package/types/OpenCvSharp/HausdorffDistanceExtractor.d.ts +45 -0
- package/types/OpenCvSharp/HersheyFonts.d.ts +31 -0
- package/types/OpenCvSharp/HierarchyIndex.d.ts +41 -0
- package/types/OpenCvSharp/HistCompMethods.d.ts +29 -0
- package/types/OpenCvSharp/HistogramNormType.d.ts +23 -0
- package/types/OpenCvSharp/HomographyMethods.d.ts +33 -0
- package/types/OpenCvSharp/HoughModes.d.ts +27 -0
- package/types/OpenCvSharp/ICvPtrHolder.d.ts +28 -0
- package/types/OpenCvSharp/IVec.d.ts +79 -0
- package/types/OpenCvSharp/ImageEncodingParam.d.ts +39 -0
- package/types/OpenCvSharp/ImgHash/AverageHash.d.ts +22 -0
- package/types/OpenCvSharp/ImgHash/BlockMeanHash.d.ts +35 -0
- package/types/OpenCvSharp/ImgHash/BlockMeanHashMode.d.ts +24 -0
- package/types/OpenCvSharp/ImgHash/ColorMomentHash.d.ts +29 -0
- package/types/OpenCvSharp/ImgHash/ImgHashBase.d.ts +28 -0
- package/types/OpenCvSharp/ImgHash/MarrHildrethHash.d.ts +47 -0
- package/types/OpenCvSharp/ImgHash/PHash.d.ts +29 -0
- package/types/OpenCvSharp/ImgHash/RadialVarianceHash.d.ts +45 -0
- package/types/OpenCvSharp/ImreadModes.d.ts +35 -0
- package/types/OpenCvSharp/ImwriteEXRTypeFlags.d.ts +24 -0
- package/types/OpenCvSharp/ImwriteFlags.d.ts +40 -0
- package/types/OpenCvSharp/ImwritePAMFlags.d.ts +28 -0
- package/types/OpenCvSharp/ImwritePNGFlags.d.ts +27 -0
- package/types/OpenCvSharp/InOutArrayKind.d.ts +38 -0
- package/types/OpenCvSharp/InpaintMethod.d.ts +24 -0
- package/types/OpenCvSharp/InputArray.d.ts +156 -0
- package/types/OpenCvSharp/InputOutputArray.d.ts +25 -0
- package/types/OpenCvSharp/Internal/ExceptionHandler.d.ts +22 -0
- package/types/OpenCvSharp/Internal/ExceptionStatus.d.ts +24 -0
- package/types/OpenCvSharp/Internal/NativeMethods.d.ts +13049 -0
- package/types/OpenCvSharp/Internal/StdString.d.ts +36 -0
- package/types/OpenCvSharp/Internal/Util/ArrayAddress.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Util/ArrayAddress2.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Util/PInvokeHelper.d.ts +27 -0
- package/types/OpenCvSharp/Internal/Util/ReadOnlyArray2D.d.ts +41 -0
- package/types/OpenCvSharp/Internal/Util/SaturateCast.d.ts +82 -0
- package/types/OpenCvSharp/Internal/Util/ScopedGCHandle.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/IStdVector.d.ts +47 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfByte.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfDMatch.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfDTreesNode.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfDouble.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfFloat.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfImageFeatures.d.ts +38 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfInt32.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfKeyPoint.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfMat.d.ts +46 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint2d.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint2f.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfPoint3f.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfRect.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfRect2d.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfRotatedRect.d.ts +44 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfString.d.ts +39 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVec2f.d.ts +41 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVec3f.d.ts +41 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVec4f.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVec4i.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorByte.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorDMatch.d.ts +41 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorDouble.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorInt32.d.ts +40 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorKeyPoint.d.ts +42 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint.d.ts +43 -0
- package/types/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint2f.d.ts +41 -0
- package/types/OpenCvSharp/Internal/Win32API.d.ts +19 -0
- package/types/OpenCvSharp/Internal/WindowsLibraryLoader.d.ts +37 -0
- package/types/OpenCvSharp/InterpolationFlags.d.ts +31 -0
- package/types/OpenCvSharp/KAZE.d.ts +70 -0
- package/types/OpenCvSharp/KAZEDiffusivityType.d.ts +26 -0
- package/types/OpenCvSharp/KMeansFlags.d.ts +25 -0
- package/types/OpenCvSharp/KalmanFilter.d.ts +94 -0
- package/types/OpenCvSharp/KeyPoint.d.ts +109 -0
- package/types/OpenCvSharp/KeyPointsFilter.d.ts +57 -0
- package/types/OpenCvSharp/LDA.d.ts +63 -0
- package/types/OpenCvSharp/Line2D.d.ts +54 -0
- package/types/OpenCvSharp/Line3D.d.ts +56 -0
- package/types/OpenCvSharp/LineDescriptor/KeyLine.d.ts +213 -0
- package/types/OpenCvSharp/LineDescriptor/LSDParam.d.ts +73 -0
- package/types/OpenCvSharp/LineIterator.d.ts +98 -0
- package/types/OpenCvSharp/LineSegmentDetector.d.ts +132 -0
- package/types/OpenCvSharp/LineSegmentDetectorModes.d.ts +28 -0
- package/types/OpenCvSharp/LineSegmentPoint.d.ts +61 -0
- package/types/OpenCvSharp/LineSegmentPolar.d.ts +56 -0
- package/types/OpenCvSharp/LineTypes.d.ts +25 -0
- package/types/OpenCvSharp/LogLevel.d.ts +29 -0
- package/types/OpenCvSharp/ML/ANN_MLP.d.ts +149 -0
- package/types/OpenCvSharp/ML/Boost.d.ts +59 -0
- package/types/OpenCvSharp/ML/DTrees.d.ts +104 -0
- package/types/OpenCvSharp/ML/KNearest.d.ts +83 -0
- package/types/OpenCvSharp/ML/LogisticRegression.d.ts +111 -0
- package/types/OpenCvSharp/ML/NormalBayesClassifier.d.ts +48 -0
- package/types/OpenCvSharp/ML/ParamGrid.d.ts +32 -0
- package/types/OpenCvSharp/ML/RTrees.d.ts +36 -0
- package/types/OpenCvSharp/ML/SVM.d.ts +199 -0
- package/types/OpenCvSharp/ML/SampleTypes.d.ts +24 -0
- package/types/OpenCvSharp/ML/StatModel.d.ts +82 -0
- package/types/OpenCvSharp/ML/TrainData.d.ts +26 -0
- package/types/OpenCvSharp/MSER.d.ts +107 -0
- package/types/OpenCvSharp/MarkerTypes.d.ts +29 -0
- package/types/OpenCvSharp/Mat.d.ts +2572 -0
- package/types/OpenCvSharp/MatDiagType.d.ts +25 -0
- package/types/OpenCvSharp/MatExpr.d.ts +121 -0
- package/types/OpenCvSharp/MatExprRowColIndexer.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionByte.d.ts +30 -0
- package/types/OpenCvSharp/MatForeachFunctionDouble.d.ts +30 -0
- package/types/OpenCvSharp/MatForeachFunctionFloat.d.ts +30 -0
- package/types/OpenCvSharp/MatForeachFunctionInt16.d.ts +30 -0
- package/types/OpenCvSharp/MatForeachFunctionInt32.d.ts +30 -0
- package/types/OpenCvSharp/MatForeachFunctionVec2b.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec2d.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec2f.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec2i.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec2s.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec3b.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec3d.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec3f.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec3i.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec3s.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec4b.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec4d.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec4f.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec4i.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec4s.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec6b.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec6d.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec6f.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec6i.d.ts +31 -0
- package/types/OpenCvSharp/MatForeachFunctionVec6s.d.ts +31 -0
- package/types/OpenCvSharp/MatIndexer.d.ts +59 -0
- package/types/OpenCvSharp/MatMemoryManager.d.ts +48 -0
- package/types/OpenCvSharp/MatOfT.d.ts +1 -0
- package/types/OpenCvSharp/MatType.d.ts +87 -0
- package/types/OpenCvSharp/MergeDebevec.d.ts +22 -0
- package/types/OpenCvSharp/MergeExposures.d.ts +34 -0
- package/types/OpenCvSharp/MergeMertens.d.ts +33 -0
- package/types/OpenCvSharp/Moments.d.ts +125 -0
- package/types/OpenCvSharp/MorphShapes.d.ts +25 -0
- package/types/OpenCvSharp/MorphTypes.d.ts +30 -0
- package/types/OpenCvSharp/MotionTypes.d.ts +26 -0
- package/types/OpenCvSharp/MouseCallback.d.ts +48 -0
- package/types/OpenCvSharp/MouseEventFlags.d.ts +28 -0
- package/types/OpenCvSharp/MouseEventTypes.d.ts +34 -0
- package/types/OpenCvSharp/NormTypes.d.ts +30 -0
- package/types/OpenCvSharp/ORB.d.ts +114 -0
- package/types/OpenCvSharp/ORBScoreType.d.ts +24 -0
- package/types/OpenCvSharp/OpenCVException.d.ts +58 -0
- package/types/OpenCvSharp/OpenCvSharpException.d.ts +30 -0
- package/types/OpenCvSharp/OptFlow/CvOptFlow.d.ts +149 -0
- package/types/OpenCvSharp/OpticalFlowFlags.d.ts +28 -0
- package/types/OpenCvSharp/OutputArray.d.ts +58 -0
- package/types/OpenCvSharp/OutputArrayOfMatList.d.ts +31 -0
- package/types/OpenCvSharp/OutputArrayOfStructList.d.ts +38 -0
- package/types/OpenCvSharp/PCA.d.ts +121 -0
- package/types/OpenCvSharp/PixelConnectivity.d.ts +24 -0
- package/types/OpenCvSharp/Point.d.ts +51 -0
- package/types/OpenCvSharp/Point2d.d.ts +52 -0
- package/types/OpenCvSharp/Point2f.d.ts +53 -0
- package/types/OpenCvSharp/Point3d.d.ts +55 -0
- package/types/OpenCvSharp/Point3f.d.ts +56 -0
- package/types/OpenCvSharp/Point3i.d.ts +53 -0
- package/types/OpenCvSharp/ProjectionType.d.ts +24 -0
- package/types/OpenCvSharp/Ptr.d.ts +25 -0
- package/types/OpenCvSharp/PyrLKOpticalFlow.d.ts +26 -0
- package/types/OpenCvSharp/QRCodeDetector.d.ts +90 -0
- package/types/OpenCvSharp/Quality/QualityBRISQUE.d.ts +35 -0
- package/types/OpenCvSharp/Quality/QualityBase.d.ts +31 -0
- package/types/OpenCvSharp/Quality/QualityGMSD.d.ts +30 -0
- package/types/OpenCvSharp/Quality/QualityMSE.d.ts +30 -0
- package/types/OpenCvSharp/Quality/QualityPSNR.d.ts +49 -0
- package/types/OpenCvSharp/Quality/QualitySSIM.d.ts +30 -0
- package/types/OpenCvSharp/RNG.d.ts +68 -0
- package/types/OpenCvSharp/RNG_MT19937.d.ts +41 -0
- package/types/OpenCvSharp/Range.d.ts +36 -0
- package/types/OpenCvSharp/Rangef.d.ts +38 -0
- package/types/OpenCvSharp/Rect.d.ts +86 -0
- package/types/OpenCvSharp/Rect2d.d.ts +89 -0
- package/types/OpenCvSharp/Rect2f.d.ts +88 -0
- package/types/OpenCvSharp/RectanglesIntersectTypes.d.ts +28 -0
- package/types/OpenCvSharp/ReduceDimension.d.ts +25 -0
- package/types/OpenCvSharp/ReduceTypes.d.ts +26 -0
- package/types/OpenCvSharp/ResourcesTracker.d.ts +49 -0
- package/types/OpenCvSharp/RetrievalModes.d.ts +27 -0
- package/types/OpenCvSharp/RidgeDetectionFilter.d.ts +92 -0
- package/types/OpenCvSharp/RobotWorldHandEyeCalibrationMethod.d.ts +28 -0
- package/types/OpenCvSharp/RobustEstimationAlgorithms.d.ts +36 -0
- package/types/OpenCvSharp/RotateFlags.d.ts +25 -0
- package/types/OpenCvSharp/RotatedRect.d.ts +53 -0
- package/types/OpenCvSharp/SVD.d.ts +98 -0
- package/types/OpenCvSharp/Scalar.d.ts +247 -0
- package/types/OpenCvSharp/SeamlessCloneMethods.d.ts +28 -0
- package/types/OpenCvSharp/Segmentation/IntelligentScissorsMB.d.ts +97 -0
- package/types/OpenCvSharp/ShapeContextDistanceExtractor.d.ts +89 -0
- package/types/OpenCvSharp/ShapeDistanceExtractor.d.ts +28 -0
- package/types/OpenCvSharp/ShapeMatchModes.d.ts +25 -0
- package/types/OpenCvSharp/SimilarRects.d.ts +29 -0
- package/types/OpenCvSharp/SimpleBlobDetector.d.ts +107 -0
- package/types/OpenCvSharp/Size.d.ts +37 -0
- package/types/OpenCvSharp/Size2d.d.ts +42 -0
- package/types/OpenCvSharp/Size2f.d.ts +47 -0
- package/types/OpenCvSharp/SolveLPResult.d.ts +26 -0
- package/types/OpenCvSharp/SolvePnPFlags.d.ts +27 -0
- package/types/OpenCvSharp/SortFlags.d.ts +26 -0
- package/types/OpenCvSharp/SparseMat.d.ts +397 -0
- package/types/OpenCvSharp/SparseMatIndexer.d.ts +94 -0
- package/types/OpenCvSharp/StereoBM.d.ts +54 -0
- package/types/OpenCvSharp/StereoMatcher.d.ts +46 -0
- package/types/OpenCvSharp/StereoRectificationFlags.d.ts +27 -0
- package/types/OpenCvSharp/StereoSGBM.d.ts +139 -0
- package/types/OpenCvSharp/Stitcher.d.ts +136 -0
- package/types/OpenCvSharp/Subdiv2D.d.ts +144 -0
- package/types/OpenCvSharp/SuperResolution.d.ts +57 -0
- package/types/OpenCvSharp/TemplateMatchModes.d.ts +28 -0
- package/types/OpenCvSharp/TermCriteria.d.ts +51 -0
- package/types/OpenCvSharp/Text/BaseOCR.d.ts +65 -0
- package/types/OpenCvSharp/Text/ComponentLevels.d.ts +24 -0
- package/types/OpenCvSharp/Text/CvText.d.ts +37 -0
- package/types/OpenCvSharp/Text/OCRTesseract.d.ts +90 -0
- package/types/OpenCvSharp/TextDetector.d.ts +32 -0
- package/types/OpenCvSharp/TextDetectorCNN.d.ts +41 -0
- package/types/OpenCvSharp/ThresholdTypes.d.ts +30 -0
- package/types/OpenCvSharp/Tonemap.d.ts +36 -0
- package/types/OpenCvSharp/TonemapDrago.d.ts +42 -0
- package/types/OpenCvSharp/TonemapMantiuk.d.ts +42 -0
- package/types/OpenCvSharp/TonemapReinhard.d.ts +49 -0
- package/types/OpenCvSharp/TrackbarCallback.d.ts +33 -0
- package/types/OpenCvSharp/TrackbarCallbackNative.d.ts +36 -0
- package/types/OpenCvSharp/Tracker.d.ts +29 -0
- package/types/OpenCvSharp/TrackerGOTURN.d.ts +46 -0
- package/types/OpenCvSharp/TrackerMIL.d.ts +50 -0
- package/types/OpenCvSharp/Tracking/TrackerCSRT.d.ts +76 -0
- package/types/OpenCvSharp/Tracking/TrackerKCF.d.ts +61 -0
- package/types/OpenCvSharp/Tracking/TrackerTypes.d.ts +28 -0
- package/types/OpenCvSharp/UMat.d.ts +358 -0
- package/types/OpenCvSharp/UMatUsageFlags.d.ts +26 -0
- package/types/OpenCvSharp/UsacParams.d.ts +150 -0
- package/types/OpenCvSharp/Vec2b.d.ts +58 -0
- package/types/OpenCvSharp/Vec2d.d.ts +46 -0
- package/types/OpenCvSharp/Vec2f.d.ts +51 -0
- package/types/OpenCvSharp/Vec2i.d.ts +50 -0
- package/types/OpenCvSharp/Vec2s.d.ts +55 -0
- package/types/OpenCvSharp/Vec2w.d.ts +55 -0
- package/types/OpenCvSharp/Vec3b.d.ts +66 -0
- package/types/OpenCvSharp/Vec3d.d.ts +55 -0
- package/types/OpenCvSharp/Vec3f.d.ts +60 -0
- package/types/OpenCvSharp/Vec3i.d.ts +59 -0
- package/types/OpenCvSharp/Vec3s.d.ts +64 -0
- package/types/OpenCvSharp/Vec3w.d.ts +64 -0
- package/types/OpenCvSharp/Vec4b.d.ts +69 -0
- package/types/OpenCvSharp/Vec4d.d.ts +58 -0
- package/types/OpenCvSharp/Vec4f.d.ts +63 -0
- package/types/OpenCvSharp/Vec4i.d.ts +62 -0
- package/types/OpenCvSharp/Vec4s.d.ts +67 -0
- package/types/OpenCvSharp/Vec4w.d.ts +67 -0
- package/types/OpenCvSharp/Vec6b.d.ts +75 -0
- package/types/OpenCvSharp/Vec6d.d.ts +64 -0
- package/types/OpenCvSharp/Vec6f.d.ts +69 -0
- package/types/OpenCvSharp/Vec6i.d.ts +68 -0
- package/types/OpenCvSharp/Vec6s.d.ts +73 -0
- package/types/OpenCvSharp/Vec6w.d.ts +73 -0
- package/types/OpenCvSharp/VideoAccelerationType.d.ts +30 -0
- package/types/OpenCvSharp/VideoCapture.d.ts +288 -0
- package/types/OpenCvSharp/VideoCaptureAPIs.d.ts +53 -0
- package/types/OpenCvSharp/VideoCapturePara.d.ts +43 -0
- package/types/OpenCvSharp/VideoCaptureProperties.d.ts +152 -0
- package/types/OpenCvSharp/VideoWriter.d.ts +164 -0
- package/types/OpenCvSharp/VideoWriterPara.d.ts +43 -0
- package/types/OpenCvSharp/VideoWriterProperties.d.ts +32 -0
- package/types/OpenCvSharp/WarpPolarMode.d.ts +24 -0
- package/types/OpenCvSharp/WeChatQRCode.d.ts +39 -0
- package/types/OpenCvSharp/Window.d.ts +113 -0
- package/types/OpenCvSharp/WindowFlags.d.ts +30 -0
- package/types/OpenCvSharp/WindowPropertyFlags.d.ts +28 -0
- package/types/OpenCvSharp/XFeatures2D/BriefDescriptorExtractor.d.ts +35 -0
- package/types/OpenCvSharp/XFeatures2D/FREAK.d.ts +49 -0
- package/types/OpenCvSharp/XFeatures2D/LATCH.d.ts +44 -0
- package/types/OpenCvSharp/XFeatures2D/LUCID.d.ts +32 -0
- package/types/OpenCvSharp/XFeatures2D/SURF.d.ts +61 -0
- package/types/OpenCvSharp/XFeatures2D/StarDetector.d.ts +50 -0
- package/types/OpenCvSharp/XImgProc/AdaptiveManifoldFilter.d.ts +59 -0
- package/types/OpenCvSharp/XImgProc/AngleRangeOption.d.ts +31 -0
- package/types/OpenCvSharp/XImgProc/CvXImgProc.d.ts +858 -0
- package/types/OpenCvSharp/XImgProc/DTFilter.d.ts +59 -0
- package/types/OpenCvSharp/XImgProc/EdgeAwareFiltersList.d.ts +30 -0
- package/types/OpenCvSharp/XImgProc/EdgeBoxes.d.ts +168 -0
- package/types/OpenCvSharp/XImgProc/FastBilateralSolverFilter.d.ts +72 -0
- package/types/OpenCvSharp/XImgProc/FastGlobalSmootherFilter.d.ts +55 -0
- package/types/OpenCvSharp/XImgProc/FastLineDetector.d.ts +87 -0
- package/types/OpenCvSharp/XImgProc/GuidedFilter.d.ts +44 -0
- package/types/OpenCvSharp/XImgProc/HoughDeskewOption.d.ts +24 -0
- package/types/OpenCvSharp/XImgProc/HoughOP.d.ts +26 -0
- package/types/OpenCvSharp/XImgProc/LocalBinarizationMethods.d.ts +29 -0
- package/types/OpenCvSharp/XImgProc/RFFeatureGetter.d.ts +41 -0
- package/types/OpenCvSharp/XImgProc/RulesOption.d.ts +24 -0
- package/types/OpenCvSharp/XImgProc/SLICType.d.ts +25 -0
- package/types/OpenCvSharp/XImgProc/Segmentation/GraphSegmentation.d.ts +51 -0
- package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentation.d.ts +91 -0
- package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategy.d.ts +141 -0
- package/types/OpenCvSharp/XImgProc/Segmentation/SelectiveSearchSegmentationStrategyMultiple.d.ts +70 -0
- package/types/OpenCvSharp/XImgProc/StructuredEdgeDetection.d.ts +90 -0
- package/types/OpenCvSharp/XImgProc/SuperpixelLSC.d.ts +58 -0
- package/types/OpenCvSharp/XImgProc/SuperpixelSEEDS.d.ts +78 -0
- package/types/OpenCvSharp/XImgProc/SuperpixelSLIC.d.ts +66 -0
- package/types/OpenCvSharp/XImgProc/ThinningTypes.d.ts +24 -0
- package/types/OpenCvSharp/XImgProc/WMFWeightType.d.ts +28 -0
- package/types/OpenCvSharp/XPhoto/Bm3dSteps.d.ts +25 -0
- package/types/OpenCvSharp/XPhoto/CvXPhoto.d.ts +317 -0
- package/types/OpenCvSharp/XPhoto/GrayworldWB.d.ts +30 -0
- package/types/OpenCvSharp/XPhoto/InpaintTypes.d.ts +25 -0
- package/types/OpenCvSharp/XPhoto/LearningBasedWB.d.ts +40 -0
- package/types/OpenCvSharp/XPhoto/SimpleWB.d.ts +37 -0
- package/types/OpenCvSharp/XPhoto/TonemapDurand.d.ts +57 -0
- package/types/OpenCvSharp/XPhoto/TransformTypes.d.ts +23 -0
- package/types/OpenCvSharp/XPhoto/WhiteBalancer.d.ts +27 -0
- package/types/SixLabors/ImageSharp/Advanced/IConfigurationProvider.d.ts +34 -0
- package/types/SixLabors/ImageSharp/Color.d.ts +224 -0
- package/types/SixLabors/ImageSharp/ColorSpaces/CieXyz.d.ts +40 -0
- package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/CieXyChromaticityCoordinates.d.ts +39 -0
- package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/RGBPrimariesChromaticityCoordinates.d.ts +41 -0
- package/types/SixLabors/ImageSharp/ColorSpaces/Conversion/RgbWorkingSpace.d.ts +30 -0
- package/types/SixLabors/ImageSharp/ColorSpaces/Rgb.d.ts +53 -0
- package/types/SixLabors/ImageSharp/Configuration.d.ts +54 -0
- package/types/SixLabors/ImageSharp/Formats/DecoderOptions.d.ts +35 -0
- package/types/SixLabors/ImageSharp/Formats/IImageDecoder.d.ts +73 -0
- package/types/SixLabors/ImageSharp/Formats/IImageEncoder.d.ts +42 -0
- package/types/SixLabors/ImageSharp/Formats/IImageFormat.d.ts +102 -0
- package/types/SixLabors/ImageSharp/Formats/IImageFormatConfigurationModule.d.ts +36 -0
- package/types/SixLabors/ImageSharp/Formats/IImageFormatDetector.d.ts +33 -0
- package/types/SixLabors/ImageSharp/Formats/ImageFormatManager.d.ts +59 -0
- package/types/SixLabors/ImageSharp/Formats/PixelTypeInfo.d.ts +33 -0
- package/types/SixLabors/ImageSharp/GraphicsOptions.d.ts +35 -0
- package/types/SixLabors/ImageSharp/IDeepCloneable.d.ts +66 -0
- package/types/SixLabors/ImageSharp/Image.d.ts +401 -3
- package/types/SixLabors/ImageSharp/ImageFrame.d.ts +102 -0
- package/types/SixLabors/ImageSharp/ImageFrameCollection.d.ts +131 -0
- package/types/SixLabors/ImageSharp/ImageInfo.d.ts +45 -0
- package/types/SixLabors/ImageSharp/Memory/AllocationOptions.d.ts +28 -0
- package/types/SixLabors/ImageSharp/Memory/Buffer2D{T}.d.ts +42 -0
- package/types/SixLabors/ImageSharp/Memory/IMemoryGroup{T}.d.ts +51 -0
- package/types/SixLabors/ImageSharp/Memory/MemoryAllocator.d.ts +43 -0
- package/types/SixLabors/ImageSharp/Memory/MemoryAllocatorOptions.d.ts +27 -0
- package/types/SixLabors/ImageSharp/Metadata/ImageFrameMetadata.d.ts +48 -0
- package/types/SixLabors/ImageSharp/Metadata/ImageMetadata.d.ts +57 -0
- package/types/SixLabors/ImageSharp/Metadata/PixelResolutionUnit.d.ts +30 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpColorPrimaries.d.ts +38 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpMatrixCoefficients.d.ts +43 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpProfile.d.ts +44 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Cicp/CicpTransferCharacteristics.d.ts +47 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/EncodedString.d.ts +60 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifDataType.d.ts +43 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifParts.d.ts +31 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifProfile.d.ts +59 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/ExifTag.d.ts +360 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Exif/IExifValue.d.ts +69 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccColorSpaceType.d.ts +51 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccDeviceAttribute.d.ts +34 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccPrimaryPlatformType.d.ts +34 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfile.d.ts +42 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileClass.d.ts +33 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileFlag.d.ts +31 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileHeader.d.ts +53 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileId.d.ts +41 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccProfileTag.d.ts +90 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccRenderingIntent.d.ts +30 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccTagDataEntry.d.ts +28 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccTypeSignature.d.ts +61 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Icc/IccVersion.d.ts +37 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcProfile.d.ts +76 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcTag.d.ts +95 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Iptc/IptcValue.d.ts +36 -0
- package/types/SixLabors/ImageSharp/Metadata/Profiles/Xmp/XmpProfile.d.ts +35 -0
- package/types/SixLabors/ImageSharp/Number.d.ts +36 -0
- package/types/SixLabors/ImageSharp/PixelAccessorAction.d.ts +86 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Abgr32.d.ts +104 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Argb32.d.ts +104 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Bgr24.d.ts +73 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Bgra32.d.ts +87 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Bgra5551.d.ts +78 -0
- package/types/SixLabors/ImageSharp/PixelFormats/IPackedVector{TPacked}.d.ts +45 -0
- package/types/SixLabors/ImageSharp/PixelFormats/IPixel.d.ts +94 -0
- package/types/SixLabors/ImageSharp/PixelFormats/L16.d.ts +72 -0
- package/types/SixLabors/ImageSharp/PixelFormats/L8.d.ts +72 -0
- package/types/SixLabors/ImageSharp/PixelFormats/La16.d.ts +74 -0
- package/types/SixLabors/ImageSharp/PixelFormats/La32.d.ts +74 -0
- package/types/SixLabors/ImageSharp/PixelFormats/PixelAlphaCompositionMode.d.ts +42 -0
- package/types/SixLabors/ImageSharp/PixelFormats/PixelAlphaRepresentation.d.ts +32 -0
- package/types/SixLabors/ImageSharp/PixelFormats/PixelBlender{TPixel}.d.ts +33 -0
- package/types/SixLabors/ImageSharp/PixelFormats/PixelColorBlendingMode.d.ts +38 -0
- package/types/SixLabors/ImageSharp/PixelFormats/PixelOperations{TPixel}.d.ts +62 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Rgb24.d.ts +73 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Rgb48.d.ts +73 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Rgba32.d.ts +112 -0
- package/types/SixLabors/ImageSharp/PixelFormats/Rgba64.d.ts +95 -0
- package/types/SixLabors/ImageSharp/Point.d.ts +65 -0
- package/types/SixLabors/ImageSharp/PointF.d.ts +69 -0
- package/types/SixLabors/ImageSharp/Processing/Processors/IImageProcessor{TPixel}.d.ts +47 -0
- package/types/SixLabors/ImageSharp/Processing/Processors/Transforms/IResampler.d.ts +39 -0
- package/types/SixLabors/ImageSharp/Processing/Processors/Transforms/IResamplingTransformImageProcessor{TPixel}.d.ts +56 -0
- package/types/SixLabors/ImageSharp/Rational.d.ts +53 -0
- package/types/SixLabors/ImageSharp/ReadOrigin.d.ts +24 -0
- package/types/SixLabors/ImageSharp/Rectangle.d.ts +99 -0
- package/types/SixLabors/ImageSharp/RectangleF.d.ts +98 -0
- package/types/SixLabors/ImageSharp/SignedRational.d.ts +52 -0
- package/types/SixLabors/ImageSharp/Size.d.ts +55 -0
- package/types/SixLabors/ImageSharp/SizeF.d.ts +56 -0
- package/types/System/Action.d.ts +235 -0
- package/types/System/AggregateException.d.ts +69 -0
- package/types/System/Array.d.ts +441 -0
- package/types/System/ArraySegment.d.ts +108 -0
- package/types/System/AsyncCallback.d.ts +26 -0
- package/types/System/Attribute.d.ts +148 -0
- package/types/System/Boolean.d.ts +46 -0
- package/types/System/Buffers/IBufferWriter.d.ts +50 -0
- package/types/System/Buffers/IMemoryOwner.d.ts +46 -0
- package/types/System/Buffers/IPinnable.d.ts +35 -0
- package/types/System/Buffers/MemoryHandle.d.ts +22 -0
- package/types/System/Buffers/MemoryManager.d.ts +46 -0
- package/types/System/Buffers/ReadOnlySequence.d.ts +129 -0
- package/types/System/Buffers/ReadOnlySequenceSegment.d.ts +34 -0
- package/types/System/Buffers/SpanAction.d.ts +45 -0
- package/types/System/Byte.d.ts +156 -0
- package/types/System/Char.d.ts +172 -0
- package/types/System/CharEnumerator.d.ts +32 -0
- package/types/System/Collections/CollectionBase.d.ts +37 -0
- package/types/System/Collections/Concurrent/ConcurrentDictionary.d.ts +142 -0
- package/types/System/Collections/DictionaryEntry.d.ts +19 -8
- package/types/System/Collections/Generic/Dictionary.d.ts +263 -179
- package/types/System/Collections/Generic/HashSet.d.ts +134 -0
- package/types/System/Collections/Generic/ICollection.d.ts +44 -11
- package/types/System/Collections/Generic/IComparer.d.ts +44 -0
- package/types/System/Collections/Generic/IDictionary.d.ts +55 -3
- package/types/System/Collections/Generic/IEnumerable.d.ts +38 -4
- package/types/System/Collections/Generic/IEnumerator.d.ts +38 -4
- package/types/System/Collections/Generic/IEqualityComparer.d.ts +39 -4
- package/types/System/Collections/Generic/IList.d.ts +42 -11
- package/types/System/Collections/Generic/IReadOnlyCollection.d.ts +40 -3
- package/types/System/Collections/Generic/IReadOnlyDictionary.d.ts +51 -9
- package/types/System/Collections/Generic/IReadOnlyList.d.ts +45 -3
- package/types/System/Collections/Generic/IReadOnlySet.d.ts +53 -0
- package/types/System/Collections/Generic/ISet.d.ts +52 -0
- package/types/System/Collections/Generic/KeyValuePair.d.ts +35 -12
- package/types/System/Collections/Generic/List.d.ts +180 -139
- package/types/System/Collections/ICollection.d.ts +29 -8
- package/types/System/Collections/IComparer.d.ts +27 -0
- package/types/System/Collections/IDictionary.d.ts +33 -18
- package/types/System/Collections/IDictionaryEnumerator.d.ts +28 -6
- package/types/System/Collections/IEnumerable.d.ts +22 -3
- package/types/System/Collections/IEnumerator.d.ts +23 -6
- package/types/System/Collections/IEqualityComparer.d.ts +24 -4
- package/types/System/Collections/IList.d.ts +39 -21
- package/types/System/Collections/IStructuralComparable.d.ts +26 -4
- package/types/System/Collections/IStructuralEquatable.d.ts +25 -4
- package/types/System/Collections/ObjectModel/Collection.d.ts +71 -0
- package/types/System/Collections/ObjectModel/ReadOnlyCollection.d.ts +64 -0
- package/types/System/Collections/ReadOnlyCollectionBase.d.ts +29 -0
- package/types/System/Collections/Specialized/StringDictionary.d.ts +50 -0
- package/types/System/Comparison.d.ts +39 -0
- package/types/System/ComponentModel/Component.d.ts +42 -0
- package/types/System/ComponentModel/ComponentCollection.d.ts +46 -0
- package/types/System/ComponentModel/IComponent.d.ts +32 -0
- package/types/System/ComponentModel/IContainer.d.ts +34 -0
- package/types/System/ComponentModel/INotifyPropertyChanged.d.ts +37 -0
- package/types/System/ComponentModel/INotifyPropertyChanging.d.ts +37 -0
- package/types/System/ComponentModel/ISite.d.ts +32 -0
- package/types/System/ComponentModel/ISynchronizeInvoke.d.ts +35 -0
- package/types/System/ComponentModel/PropertyChangedEventArgs.d.ts +23 -0
- package/types/System/ComponentModel/PropertyChangedEventHandler.d.ts +36 -0
- package/types/System/ComponentModel/PropertyChangingEventArgs.d.ts +24 -0
- package/types/System/ComponentModel/PropertyChangingEventHandler.d.ts +36 -0
- package/types/System/Configuration/Assemblies/AssemblyHashAlgorithm.d.ts +35 -0
- package/types/System/Configuration/Assemblies/AssemblyVersionCompatibility.d.ts +33 -0
- package/types/System/Converter.d.ts +44 -0
- package/types/System/DateOnly.d.ts +154 -0
- package/types/System/DateTime.d.ts +308 -3
- package/types/System/DateTimeKind.d.ts +25 -0
- package/types/System/DateTimeOffset.d.ts +218 -3
- package/types/System/DayOfWeek.d.ts +29 -0
- package/types/System/Decimal.d.ts +225 -0
- package/types/System/Delegate.d.ts +78 -0
- package/types/System/Diagnostics/DataReceivedEventArgs.d.ts +21 -0
- package/types/System/Diagnostics/DataReceivedEventHandler.d.ts +35 -0
- package/types/System/Diagnostics/FileVersionInfo.d.ts +50 -0
- package/types/System/Diagnostics/Process.d.ts +230 -0
- package/types/System/Diagnostics/ProcessModule.d.ts +41 -0
- package/types/System/Diagnostics/ProcessModuleCollection.d.ts +46 -0
- package/types/System/Diagnostics/ProcessPriorityClass.d.ts +31 -0
- package/types/System/Diagnostics/ProcessStartInfo.d.ts +66 -0
- package/types/System/Diagnostics/ProcessThread.d.ts +69 -0
- package/types/System/Diagnostics/ProcessThreadCollection.d.ts +55 -0
- package/types/System/Diagnostics/ProcessWindowStyle.d.ts +26 -0
- package/types/System/Diagnostics/ThreadPriorityLevel.d.ts +29 -0
- package/types/System/Diagnostics/ThreadState.d.ts +30 -0
- package/types/System/Diagnostics/ThreadWaitReason.d.ts +36 -0
- package/types/System/Dispatch.d.ts +28 -0
- package/types/System/Double.d.ts +272 -0
- package/types/System/Drawing/Bitmap.d.ts +119 -2
- package/types/System/Drawing/Brush.d.ts +26 -0
- package/types/System/Drawing/CharacterRange.d.ts +34 -0
- package/types/System/Drawing/Color.d.ts +198 -334
- package/types/System/Drawing/CopyPixelOperation.d.ts +39 -0
- package/types/System/Drawing/Drawing2D/CombineMode.d.ts +32 -0
- package/types/System/Drawing/Drawing2D/CompositingMode.d.ts +28 -0
- package/types/System/Drawing/Drawing2D/CompositingQuality.d.ts +32 -0
- package/types/System/Drawing/Drawing2D/CoordinateSpace.d.ts +29 -0
- package/types/System/Drawing/Drawing2D/CustomLineCap.d.ts +74 -0
- package/types/System/Drawing/Drawing2D/DashCap.d.ts +29 -0
- package/types/System/Drawing/Drawing2D/DashStyle.d.ts +32 -0
- package/types/System/Drawing/Drawing2D/FillMode.d.ts +28 -0
- package/types/System/Drawing/Drawing2D/FlushIntention.d.ts +28 -0
- package/types/System/Drawing/Drawing2D/GraphicsContainer.d.ts +20 -0
- package/types/System/Drawing/Drawing2D/GraphicsPath.d.ts +409 -0
- package/types/System/Drawing/Drawing2D/GraphicsState.d.ts +17 -0
- package/types/System/Drawing/Drawing2D/InterpolationMode.d.ts +35 -0
- package/types/System/Drawing/Drawing2D/LineCap.d.ts +37 -0
- package/types/System/Drawing/Drawing2D/LineJoin.d.ts +30 -0
- package/types/System/Drawing/Drawing2D/Matrix.d.ts +142 -0
- package/types/System/Drawing/Drawing2D/MatrixOrder.d.ts +28 -0
- package/types/System/Drawing/Drawing2D/PathData.d.ts +30 -0
- package/types/System/Drawing/Drawing2D/PenAlignment.d.ts +31 -0
- package/types/System/Drawing/Drawing2D/PenType.d.ts +31 -0
- package/types/System/Drawing/Drawing2D/PixelOffsetMode.d.ts +32 -0
- package/types/System/Drawing/Drawing2D/RegionData.d.ts +22 -0
- package/types/System/Drawing/Drawing2D/SmoothingMode.d.ts +32 -0
- package/types/System/Drawing/Drawing2D/WarpMode.d.ts +28 -0
- package/types/System/Drawing/Drawing2D/WrapMode.d.ts +31 -0
- package/types/System/Drawing/Font.d.ts +173 -0
- package/types/System/Drawing/FontFamily.d.ts +66 -0
- package/types/System/Drawing/FontStyle.d.ts +27 -0
- package/types/System/Drawing/Graphics.d.ts +1289 -0
- package/types/System/Drawing/GraphicsUnit.d.ts +29 -0
- package/types/System/Drawing/IDeviceContext.d.ts +31 -0
- package/types/System/Drawing/Icon.d.ts +91 -0
- package/types/System/Drawing/Image.d.ts +165 -3
- package/types/System/Drawing/Imaging/BitmapData.d.ts +34 -0
- package/types/System/Drawing/Imaging/CachedBitmap.d.ts +27 -0
- package/types/System/Drawing/Imaging/ColorAdjustType.d.ts +33 -0
- package/types/System/Drawing/Imaging/ColorChannelFlag.d.ts +31 -0
- package/types/System/Drawing/Imaging/ColorMap.d.ts +29 -0
- package/types/System/Drawing/Imaging/ColorMatrix.d.ts +65 -0
- package/types/System/Drawing/Imaging/ColorMatrixFlag.d.ts +29 -0
- package/types/System/Drawing/Imaging/ColorPalette.d.ts +24 -0
- package/types/System/Drawing/Imaging/EmfPlusRecordType.d.ts +279 -0
- package/types/System/Drawing/Imaging/EmfType.d.ts +29 -0
- package/types/System/Drawing/Imaging/Encoder.d.ts +37 -0
- package/types/System/Drawing/Imaging/EncoderParameter.d.ts +119 -0
- package/types/System/Drawing/Imaging/EncoderParameterValueType.d.ts +39 -0
- package/types/System/Drawing/Imaging/EncoderParameters.d.ts +35 -0
- package/types/System/Drawing/Imaging/FrameDimension.d.ts +30 -0
- package/types/System/Drawing/Imaging/ImageAttributes.d.ts +138 -0
- package/types/System/Drawing/Imaging/ImageCodecFlags.d.ts +35 -0
- package/types/System/Drawing/Imaging/ImageCodecInfo.d.ts +37 -0
- package/types/System/Drawing/Imaging/ImageFormat.d.ts +39 -0
- package/types/System/Drawing/Imaging/ImageLockMode.d.ts +30 -0
- package/types/System/Drawing/Imaging/MetaHeader.d.ts +33 -0
- package/types/System/Drawing/Imaging/Metafile.d.ts +257 -0
- package/types/System/Drawing/Imaging/MetafileFrameUnit.d.ts +32 -0
- package/types/System/Drawing/Imaging/MetafileHeader.d.ts +41 -0
- package/types/System/Drawing/Imaging/MetafileType.d.ts +32 -0
- package/types/System/Drawing/Imaging/PixelFormat.d.ts +49 -0
- package/types/System/Drawing/Imaging/PlayRecordCallback.d.ts +48 -0
- package/types/System/Drawing/Imaging/PropertyItem.d.ts +25 -0
- package/types/System/Drawing/Imaging/WmfPlaceableFileHeader.d.ts +35 -0
- package/types/System/Drawing/Interop/LOGFONT.d.ts +34 -0
- package/types/System/Drawing/KnownColor.d.ts +191 -351
- package/types/System/Drawing/Pen.d.ts +121 -3
- package/types/System/Drawing/Point.d.ts +46 -0
- package/types/System/Drawing/PointF.d.ts +43 -0
- package/types/System/Drawing/Rectangle.d.ts +80 -0
- package/types/System/Drawing/RectangleF.d.ts +76 -0
- package/types/System/Drawing/Region.d.ts +157 -0
- package/types/System/Drawing/RotateFlipType.d.ts +38 -0
- package/types/System/Drawing/Size.d.ts +42 -0
- package/types/System/Drawing/SizeF.d.ts +48 -0
- package/types/System/Drawing/StringAlignment.d.ts +25 -0
- package/types/System/Drawing/StringDigitSubstitute.d.ts +29 -0
- package/types/System/Drawing/StringFormat.d.ts +89 -0
- package/types/System/Drawing/StringFormatFlags.d.ts +31 -0
- package/types/System/Drawing/StringTrimming.d.ts +28 -0
- package/types/System/Drawing/Text/FontCollection.d.ts +26 -0
- package/types/System/Drawing/Text/GenericFontFamilies.d.ts +29 -0
- package/types/System/Drawing/Text/HotkeyPrefix.d.ts +29 -0
- package/types/System/Drawing/Text/TextRenderingHint.d.ts +32 -0
- package/types/System/Dynamic/BinaryOperationBinder.d.ts +41 -0
- package/types/System/Dynamic/BindingRestrictions.d.ts +45 -0
- package/types/System/Dynamic/CallInfo.d.ts +36 -0
- package/types/System/Dynamic/ConvertBinder.d.ts +34 -0
- package/types/System/Dynamic/CreateInstanceBinder.d.ts +41 -0
- package/types/System/Dynamic/DeleteIndexBinder.d.ts +41 -0
- package/types/System/Dynamic/DeleteMemberBinder.d.ts +37 -0
- package/types/System/Dynamic/DynamicMetaObject.d.ts +96 -0
- package/types/System/Dynamic/DynamicMetaObjectBinder.d.ts +50 -0
- package/types/System/Dynamic/DynamicObject.d.ts +86 -0
- package/types/System/Dynamic/GetIndexBinder.d.ts +38 -0
- package/types/System/Dynamic/GetMemberBinder.d.ts +34 -0
- package/types/System/Dynamic/IDynamicMetaObjectProvider.d.ts +36 -0
- package/types/System/Dynamic/InvokeBinder.d.ts +38 -0
- package/types/System/Dynamic/InvokeMemberBinder.d.ts +54 -0
- package/types/System/Dynamic/SetIndexBinder.d.ts +40 -0
- package/types/System/Dynamic/SetMemberBinder.d.ts +38 -0
- package/types/System/Dynamic/UnaryOperationBinder.d.ts +39 -0
- package/types/System/Enum.d.ts +99 -0
- package/types/System/EventArgs.d.ts +27 -0
- package/types/System/EventHandler.d.ts +57 -0
- package/types/System/Func.d.ts +247 -0
- package/types/System/Globalization/Calendar.d.ts +135 -0
- package/types/System/Globalization/CalendarAlgorithmType.d.ts +29 -0
- package/types/System/Globalization/CalendarWeekRule.d.ts +25 -0
- package/types/System/Globalization/CompareInfo.d.ts +217 -0
- package/types/System/Globalization/CompareOptions.d.ts +31 -0
- package/types/System/Globalization/CultureInfo.d.ts +78 -3
- package/types/System/Globalization/CultureTypes.d.ts +30 -0
- package/types/System/Globalization/DateTimeFormatInfo.d.ts +85 -0
- package/types/System/Globalization/DateTimeStyles.d.ts +32 -0
- package/types/System/Globalization/DigitShapes.d.ts +25 -0
- package/types/System/Globalization/NumberFormatInfo.d.ts +66 -0
- package/types/System/Globalization/NumberStyles.d.ts +41 -0
- package/types/System/Globalization/SortKey.d.ts +28 -0
- package/types/System/Globalization/SortVersion.d.ts +31 -0
- package/types/System/Globalization/TextInfo.d.ts +48 -0
- package/types/System/Globalization/TimeSpanStyles.d.ts +24 -0
- package/types/System/Globalization/UnicodeCategory.d.ts +52 -0
- package/types/System/Guid.d.ts +104 -0
- package/types/System/IAsyncDisposable.d.ts +20 -3
- package/types/System/IAsyncResult.d.ts +31 -0
- package/types/System/ICloneable.d.ts +27 -0
- package/types/System/IComparable.d.ts +56 -3
- package/types/System/IConvertible.d.ts +47 -0
- package/types/System/IDisposable.d.ts +22 -3
- package/types/System/IEquatable.d.ts +38 -3
- package/types/System/IFormatProvider.d.ts +28 -0
- package/types/System/IFormattable.d.ts +28 -0
- package/types/System/IO/FileAccess.d.ts +25 -0
- package/types/System/IO/FileMode.d.ts +28 -0
- package/types/System/IO/FileOptions.d.ts +29 -0
- package/types/System/IO/FileShare.d.ts +28 -0
- package/types/System/IO/FileStream.d.ts +227 -0
- package/types/System/IO/FileStreamOptions.d.ts +39 -0
- package/types/System/IO/MemoryStream.d.ts +145 -0
- package/types/System/IO/SeekOrigin.d.ts +25 -0
- package/types/System/IO/Stream.d.ts +204 -0
- package/types/System/IO/StreamReader.d.ts +153 -0
- package/types/System/IO/StreamWriter.d.ts +149 -0
- package/types/System/IO/TextReader.d.ts +90 -0
- package/types/System/IO/TextWriter.d.ts +163 -0
- package/types/System/IO/UnixFileMode.d.ts +35 -0
- package/types/System/IParsable.d.ts +51 -0
- package/types/System/ISpanFormattable.d.ts +27 -0
- package/types/System/ISpanParsable.d.ts +44 -0
- package/types/System/IUtf8SpanFormattable.d.ts +31 -0
- package/types/System/IUtf8SpanParsable.d.ts +44 -0
- package/types/System/Index.d.ts +38 -0
- package/types/System/Int16.d.ts +165 -0
- package/types/System/Int32.d.ts +164 -0
- package/types/System/Int64.d.ts +165 -0
- package/types/System/IntPtr.d.ts +132 -0
- package/types/System/Lazy.d.ts +46 -0
- package/types/System/Linq/Expressions/BinaryExpression.d.ts +43 -0
- package/types/System/Linq/Expressions/BlockExpression.d.ts +34 -0
- package/types/System/Linq/Expressions/CatchBlock.d.ts +33 -0
- package/types/System/Linq/Expressions/ConditionalExpression.d.ts +35 -0
- package/types/System/Linq/Expressions/ConstantExpression.d.ts +28 -0
- package/types/System/Linq/Expressions/DebugInfoExpression.d.ts +41 -0
- package/types/System/Linq/Expressions/DefaultExpression.d.ts +27 -0
- package/types/System/Linq/Expressions/DynamicExpression.d.ts +135 -0
- package/types/System/Linq/Expressions/ElementInit.d.ts +35 -0
- package/types/System/Linq/Expressions/Expression.d.ts +1631 -0
- package/types/System/Linq/Expressions/ExpressionType.d.ts +111 -0
- package/types/System/Linq/Expressions/GotoExpression.d.ts +33 -0
- package/types/System/Linq/Expressions/GotoExpressionKind.d.ts +30 -0
- package/types/System/Linq/Expressions/IArgumentProvider.d.ts +37 -0
- package/types/System/Linq/Expressions/IDynamicExpression.d.ts +39 -0
- package/types/System/Linq/Expressions/IndexExpression.d.ts +52 -0
- package/types/System/Linq/Expressions/InvocationExpression.d.ts +46 -0
- package/types/System/Linq/Expressions/LabelExpression.d.ts +31 -0
- package/types/System/Linq/Expressions/LabelTarget.d.ts +24 -0
- package/types/System/Linq/Expressions/LambdaExpression.d.ts +39 -0
- package/types/System/Linq/Expressions/ListInitExpression.d.ts +39 -0
- package/types/System/Linq/Expressions/LoopExpression.d.ts +33 -0
- package/types/System/Linq/Expressions/MemberAssignment.d.ts +23 -0
- package/types/System/Linq/Expressions/MemberBinding.d.ts +25 -0
- package/types/System/Linq/Expressions/MemberBindingType.d.ts +29 -0
- package/types/System/Linq/Expressions/MemberExpression.d.ts +28 -0
- package/types/System/Linq/Expressions/MemberInitExpression.d.ts +39 -0
- package/types/System/Linq/Expressions/MemberListBinding.d.ts +30 -0
- package/types/System/Linq/Expressions/MemberMemberBinding.d.ts +29 -0
- package/types/System/Linq/Expressions/MethodCallExpression.d.ts +55 -0
- package/types/System/Linq/Expressions/NewArrayExpression.d.ts +31 -0
- package/types/System/Linq/Expressions/NewExpression.d.ts +52 -0
- package/types/System/Linq/Expressions/ParameterExpression.d.ts +29 -0
- package/types/System/Linq/Expressions/RuntimeVariablesExpression.d.ts +35 -0
- package/types/System/Linq/Expressions/SwitchCase.d.ts +30 -0
- package/types/System/Linq/Expressions/SwitchExpression.d.ts +37 -0
- package/types/System/Linq/Expressions/SymbolDocumentInfo.d.ts +28 -0
- package/types/System/Linq/Expressions/TryExpression.d.ts +37 -0
- package/types/System/Linq/Expressions/TypeBinaryExpression.d.ts +32 -0
- package/types/System/Linq/Expressions/UnaryExpression.d.ts +40 -0
- package/types/System/MarshalByRefObject.d.ts +21 -0
- package/types/System/Memory.d.ts +56 -0
- package/types/System/MidpointRounding.d.ts +27 -0
- package/types/System/ModuleHandle.d.ts +61 -0
- package/types/System/MulticastDelegate.d.ts +24 -0
- package/types/System/Net/ICredentials.d.ts +29 -0
- package/types/System/Net/ICredentialsByHost.d.ts +40 -0
- package/types/System/Net/NetworkCredential.d.ts +54 -0
- package/types/System/Nullable.d.ts +36 -0
- package/types/System/Numerics/IAdditionOperators.d.ts +54 -0
- package/types/System/Numerics/IAdditiveIdentity.d.ts +55 -0
- package/types/System/Numerics/IBinaryFloatingPointIeee754.d.ts +81 -0
- package/types/System/Numerics/IBinaryInteger.d.ts +105 -0
- package/types/System/Numerics/IBinaryNumber.d.ts +70 -0
- package/types/System/Numerics/IBitwiseOperators.d.ts +57 -0
- package/types/System/Numerics/IComparisonOperators.d.ts +61 -0
- package/types/System/Numerics/IDecrementOperators.d.ts +44 -0
- package/types/System/Numerics/IDivisionOperators.d.ts +54 -0
- package/types/System/Numerics/IEqualityOperators.d.ts +54 -0
- package/types/System/Numerics/IExponentialFunctions.d.ts +72 -0
- package/types/System/Numerics/IFloatingPoint.d.ts +110 -0
- package/types/System/Numerics/IFloatingPointConstants.d.ts +68 -0
- package/types/System/Numerics/IFloatingPointIeee754.d.ts +96 -0
- package/types/System/Numerics/IHyperbolicFunctions.d.ts +72 -0
- package/types/System/Numerics/IIncrementOperators.d.ts +44 -0
- package/types/System/Numerics/ILogarithmicFunctions.d.ts +73 -0
- package/types/System/Numerics/IMinMaxValue.d.ts +45 -0
- package/types/System/Numerics/IModulusOperators.d.ts +57 -0
- package/types/System/Numerics/IMultiplicativeIdentity.d.ts +56 -0
- package/types/System/Numerics/IMultiplyOperators.d.ts +54 -0
- package/types/System/Numerics/INumber.d.ts +72 -0
- package/types/System/Numerics/INumberBase.d.ts +104 -0
- package/types/System/Numerics/IPowerFunctions.d.ts +64 -0
- package/types/System/Numerics/IRootFunctions.d.ts +69 -0
- package/types/System/Numerics/IShiftOperators.d.ts +57 -0
- package/types/System/Numerics/ISignedNumber.d.ts +63 -0
- package/types/System/Numerics/ISubtractionOperators.d.ts +60 -0
- package/types/System/Numerics/ITrigonometricFunctions.d.ts +83 -0
- package/types/System/Numerics/IUnaryNegationOperators.d.ts +54 -0
- package/types/System/Numerics/IUnaryPlusOperators.d.ts +51 -0
- package/types/System/Numerics/IUnsignedNumber.d.ts +62 -0
- package/types/System/Numerics/Matrix3x2.d.ts +123 -0
- package/types/System/Numerics/Matrix4x4.d.ts +299 -0
- package/types/System/Numerics/Plane.d.ts +57 -0
- package/types/System/Numerics/Quaternion.d.ts +108 -0
- package/types/System/Numerics/Tensors/IReadOnlyTensor.d.ts +68 -0
- package/types/System/Numerics/Tensors/ITensor.d.ts +70 -0
- package/types/System/Numerics/Tensors/Tensor.d.ts +58 -0
- package/types/System/Numerics/Vector2.d.ts +121 -0
- package/types/System/Numerics/Vector3.d.ts +124 -0
- package/types/System/Numerics/Vector4.d.ts +137 -0
- package/types/System/Object.d.ts +29 -0
- package/types/System/Predicate.d.ts +39 -0
- package/types/System/Range.d.ts +38 -0
- package/types/System/ReadOnlyMemory.d.ts +60 -0
- package/types/System/Reflection/Assembly.d.ts +158 -0
- package/types/System/Reflection/AssemblyContentType.d.ts +24 -0
- package/types/System/Reflection/AssemblyName.d.ts +78 -0
- package/types/System/Reflection/AssemblyNameFlags.d.ts +27 -0
- package/types/System/Reflection/Binder.d.ts +65 -0
- package/types/System/Reflection/BindingFlags.d.ts +43 -0
- package/types/System/Reflection/CallingConventions.d.ts +27 -0
- package/types/System/Reflection/CommonJSManager.d.ts +137 -0
- package/types/System/Reflection/ConstructorInfo.d.ts +43 -0
- package/types/System/Reflection/CustomAttributeData.d.ts +52 -0
- package/types/System/Reflection/CustomAttributeNamedArgument.d.ts +41 -0
- package/types/System/Reflection/CustomAttributeTypedArgument.d.ts +32 -0
- package/types/System/Reflection/EventAttributes.d.ts +26 -0
- package/types/System/Reflection/EventInfo.d.ts +65 -0
- package/types/System/Reflection/ExceptionHandlingClause.d.ts +33 -0
- package/types/System/Reflection/ExceptionHandlingClauseOptions.d.ts +30 -0
- package/types/System/Reflection/FieldAttributes.d.ts +41 -0
- package/types/System/Reflection/FieldInfo.d.ts +106 -0
- package/types/System/Reflection/GenericParameterAttributes.d.ts +34 -0
- package/types/System/Reflection/ICustomAttributeProvider.d.ts +36 -0
- package/types/System/Reflection/IReflect.d.ts +94 -0
- package/types/System/Reflection/IReflectableType.d.ts +28 -0
- package/types/System/Reflection/ImageFileMachine.d.ts +26 -0
- package/types/System/Reflection/InterfaceMapping.d.ts +28 -0
- package/types/System/Reflection/LocalVariableInfo.d.ts +28 -0
- package/types/System/Reflection/ManifestResourceInfo.d.ts +35 -0
- package/types/System/Reflection/MemberFilter.d.ts +31 -0
- package/types/System/Reflection/MemberInfo.d.ts +43 -0
- package/types/System/Reflection/MemberTypes.d.ts +31 -0
- package/types/System/Reflection/MethodAttributes.d.ts +46 -0
- package/types/System/Reflection/MethodBase.d.ts +115 -0
- package/types/System/Reflection/MethodBody.d.ts +30 -0
- package/types/System/Reflection/MethodImplAttributes.d.ts +42 -0
- package/types/System/Reflection/MethodInfo.d.ts +53 -0
- package/types/System/Reflection/ModuleResolveEventHandler.d.ts +36 -0
- package/types/System/Reflection/ParameterAttributes.d.ts +33 -0
- package/types/System/Reflection/ParameterInfo.d.ts +58 -0
- package/types/System/Reflection/ParameterModifier.d.ts +30 -0
- package/types/System/Reflection/PortableExecutableKinds.d.ts +31 -0
- package/types/System/Reflection/ProcessorArchitecture.d.ts +31 -0
- package/types/System/Reflection/PropertyAttributes.d.ts +30 -0
- package/types/System/Reflection/PropertyInfo.d.ts +103 -0
- package/types/System/Reflection/ResourceLocation.d.ts +25 -0
- package/types/System/Reflection/StrongNameKeyPair.d.ts +35 -0
- package/types/System/Reflection/TypeAttributes.d.ts +54 -0
- package/types/System/Reflection/TypeFilter.d.ts +31 -0
- package/types/System/Reflection/TypeInfo.d.ts +70 -0
- package/types/System/ResolveEventArgs.d.ts +23 -0
- package/types/System/Runtime/CompilerServices/CallSite.d.ts +52 -0
- package/types/System/Runtime/CompilerServices/CallSiteBinder.d.ts +38 -0
- package/types/System/Runtime/CompilerServices/ConfiguredTaskAwaitable.d.ts +96 -0
- package/types/System/Runtime/CompilerServices/ConfiguredValueTaskAwaitable.d.ts +99 -0
- package/types/System/Runtime/CompilerServices/DebugInfoGenerator.d.ts +35 -0
- package/types/System/Runtime/CompilerServices/ICriticalNotifyCompletion.d.ts +37 -0
- package/types/System/Runtime/CompilerServices/INotifyCompletion.d.ts +32 -0
- package/types/System/Runtime/CompilerServices/ITuple.d.ts +28 -4
- package/types/System/Runtime/CompilerServices/TaskAwaiter.d.ts +59 -0
- package/types/System/Runtime/CompilerServices/ValueTaskAwaiter.d.ts +62 -0
- package/types/System/Runtime/CompilerServices/YieldAwaitable.d.ts +52 -0
- package/types/System/Runtime/ConstrainedExecution/CriticalFinalizerObject.d.ts +23 -0
- package/types/System/Runtime/InteropServices/CharSet.d.ts +30 -0
- package/types/System/Runtime/InteropServices/GCHandle.d.ts +41 -0
- package/types/System/Runtime/InteropServices/GCHandleType.d.ts +30 -0
- package/types/System/Runtime/InteropServices/LayoutKind.d.ts +29 -0
- package/types/System/Runtime/InteropServices/SafeHandle.d.ts +42 -0
- package/types/System/Runtime/InteropServices/StructLayoutAttribute.d.ts +38 -0
- package/types/System/Runtime/Serialization/DeserializationToken.d.ts +27 -0
- package/types/System/Runtime/Serialization/IDeserializationCallback.d.ts +28 -3
- package/types/System/Runtime/Serialization/IFormatterConverter.d.ts +55 -0
- package/types/System/Runtime/Serialization/IObjectReference.d.ts +28 -0
- package/types/System/Runtime/Serialization/ISerializable.d.ts +27 -3
- package/types/System/Runtime/Serialization/SerializationEntry.d.ts +25 -0
- package/types/System/Runtime/Serialization/SerializationInfo.d.ts +90 -0
- package/types/System/Runtime/Serialization/SerializationInfoEnumerator.d.ts +35 -0
- package/types/System/Runtime/Serialization/StreamingContext.d.ts +33 -0
- package/types/System/Runtime/Serialization/StreamingContextStates.d.ts +38 -0
- package/types/System/RuntimeFieldHandle.d.ts +35 -0
- package/types/System/RuntimeMethodHandle.d.ts +36 -0
- package/types/System/RuntimeTypeHandle.d.ts +37 -0
- package/types/System/SByte.d.ts +165 -0
- package/types/System/Security/Cryptography/RandomNumberGenerator.d.ts +48 -0
- package/types/System/Security/SecureString.d.ts +44 -0
- package/types/System/Security/SecurityRuleSet.d.ts +25 -0
- package/types/System/SequencePosition.d.ts +31 -0
- package/types/System/Single.d.ts +272 -0
- package/types/System/String.d.ts +495 -0
- package/types/System/StringComparison.d.ts +28 -0
- package/types/System/StringSplitOptions.d.ts +25 -0
- package/types/System/SystemException.d.ts +30 -0
- package/types/System/Text/CompositeFormat.d.ts +24 -0
- package/types/System/Text/Decoder.d.ts +70 -0
- package/types/System/Text/DecoderFallback.d.ts +26 -0
- package/types/System/Text/DecoderFallbackBuffer.d.ts +36 -0
- package/types/System/Text/Encoder.d.ts +58 -0
- package/types/System/Text/EncoderFallback.d.ts +26 -0
- package/types/System/Text/EncoderFallbackBuffer.d.ts +40 -0
- package/types/System/Text/Encoding.d.ts +169 -0
- package/types/System/Text/EncodingInfo.d.ts +37 -0
- package/types/System/Text/EncodingProvider.d.ts +40 -0
- package/types/System/Text/Encodings/Web/JavaScriptEncoder.d.ts +35 -0
- package/types/System/Text/Encodings/Web/TextEncoder.d.ts +42 -0
- package/types/System/Text/Encodings/Web/TextEncoderSettings.d.ts +50 -0
- package/types/System/Text/Json/JsonElement.d.ts +152 -0
- package/types/System/Text/Json/JsonEncodedText.d.ts +34 -0
- package/types/System/Text/Json/JsonProperty.d.ts +29 -0
- package/types/System/Text/Json/JsonValueKind.d.ts +34 -0
- package/types/System/Text/Json/JsonWriterOptions.d.ts +29 -0
- package/types/System/Text/Json/Utf8JsonWriter.d.ts +149 -0
- package/types/System/Text/NormalizationForm.d.ts +26 -0
- package/types/System/Text/Rune.d.ts +101 -0
- package/types/System/Text/StringBuilder.d.ts +414 -0
- package/types/System/Text/StringRuneEnumerator.d.ts +36 -0
- package/types/System/Text/Unicode/UnicodeRange.d.ts +34 -0
- package/types/System/Threading/CancellationToken.d.ts +48 -49
- package/types/System/Threading/CancellationTokenRegistration.d.ts +25 -18
- package/types/System/Threading/CancellationTokenSource.d.ts +48 -41
- package/types/System/Threading/ITimer.d.ts +19 -3
- package/types/System/Threading/LazyThreadSafetyMode.d.ts +28 -0
- package/types/System/Threading/Tasks/ConfigureAwaitOptions.d.ts +33 -0
- package/types/System/Threading/Tasks/Sources/IValueTaskSource.d.ts +91 -0
- package/types/System/Threading/Tasks/Sources/ValueTaskSourceOnCompletedFlags.d.ts +33 -0
- package/types/System/Threading/Tasks/Sources/ValueTaskSourceStatus.d.ts +33 -0
- package/types/System/Threading/Tasks/Task.d.ts +513 -0
- package/types/System/Threading/Tasks/TaskContinuationOptions.d.ts +44 -0
- package/types/System/Threading/Tasks/TaskCreationOptions.d.ts +33 -0
- package/types/System/Threading/Tasks/TaskFactory.d.ts +791 -0
- package/types/System/Threading/Tasks/TaskScheduler.d.ts +28 -0
- package/types/System/Threading/Tasks/TaskStatus.d.ts +34 -0
- package/types/System/Threading/Tasks/UnobservedTaskExceptionEventArgs.d.ts +31 -0
- package/types/System/Threading/Tasks/ValueTask.d.ts +97 -5
- package/types/System/Threading/TimerCallback.d.ts +31 -0
- package/types/System/Threading/WaitHandle.d.ts +84 -3
- package/types/System/TimeOnly.d.ts +189 -0
- package/types/System/TimeProvider.d.ts +36 -23
- package/types/System/TimeSpan.d.ts +170 -3
- package/types/System/TimeZoneInfo.d.ts +224 -0
- package/types/System/TypeCode.d.ts +40 -0
- package/types/System/UInt16.d.ts +156 -0
- package/types/System/UInt32.d.ts +156 -0
- package/types/System/UInt64.d.ts +156 -0
- package/types/System/UIntPtr.d.ts +133 -0
- package/types/System/Uri.d.ts +138 -0
- package/types/System/UriComponents.d.ts +39 -0
- package/types/System/UriCreationOptions.d.ts +18 -0
- package/types/System/UriFormat.d.ts +25 -0
- package/types/System/UriHostNameType.d.ts +27 -0
- package/types/System/UriKind.d.ts +25 -0
- package/types/System/UriPartial.d.ts +26 -0
- package/types/System/V8SplitProxyHelpers.d.ts +537 -0
- package/types/System/ValueTuple.d.ts +122 -0
- package/types/System/ValueType.d.ts +19 -0
- package/types/System/Version.d.ts +71 -0
- package/types/System/WebSocket.d.ts +50 -0
- package/types/System/Windows/Forms/Keys.d.ts +193 -198
- package/types/System/Windows/Media/Matrix.d.ts +107 -72
- package/types/System/Windows/Point.d.ts +38 -32
- package/types/System/Windows/Rect.d.ts +102 -0
- package/types/System/Windows/Size.d.ts +38 -0
- package/types/System/Windows/Vector.d.ts +57 -42
- package/types/System/Xml/ConformanceLevel.d.ts +25 -0
- package/types/System/Xml/DtdProcessing.d.ts +25 -0
- package/types/System/Xml/IXmlLineInfo.d.ts +29 -0
- package/types/System/Xml/IXmlNamespaceResolver.d.ts +38 -0
- package/types/System/Xml/Linq/LoadOptions.d.ts +30 -0
- package/types/System/Xml/Linq/ReaderOptions.d.ts +28 -0
- package/types/System/Xml/Linq/SaveOptions.d.ts +29 -0
- package/types/System/Xml/Linq/XAttribute.d.ts +49 -0
- package/types/System/Xml/Linq/XContainer.d.ts +68 -0
- package/types/System/Xml/Linq/XDeclaration.d.ts +27 -0
- package/types/System/Xml/Linq/XDocument.d.ts +127 -0
- package/types/System/Xml/Linq/XDocumentType.d.ts +46 -0
- package/types/System/Xml/Linq/XElement.d.ts +180 -0
- package/types/System/Xml/Linq/XName.d.ts +32 -0
- package/types/System/Xml/Linq/XNamespace.d.ts +31 -0
- package/types/System/Xml/Linq/XNode.d.ts +103 -0
- package/types/System/Xml/Linq/XNodeDocumentOrderComparer.d.ts +35 -0
- package/types/System/Xml/Linq/XNodeEqualityComparer.d.ts +35 -0
- package/types/System/Xml/Linq/XObject.d.ts +47 -0
- package/types/System/Xml/Linq/XObjectChange.d.ts +30 -0
- package/types/System/Xml/Linq/XObjectChangeEventArgs.d.ts +32 -0
- package/types/System/Xml/Linq/XStreamingElement.d.ts +50 -0
- package/types/System/Xml/NamespaceHandling.d.ts +24 -0
- package/types/System/Xml/NewLineHandling.d.ts +25 -0
- package/types/System/Xml/ReadState.d.ts +27 -0
- package/types/System/Xml/Schema/IXmlSchemaInfo.d.ts +38 -0
- package/types/System/Xml/Schema/ValidationEventArgs.d.ts +28 -0
- package/types/System/Xml/Schema/ValidationEventHandler.d.ts +35 -0
- package/types/System/Xml/Schema/XmlSchema.d.ts +113 -0
- package/types/System/Xml/Schema/XmlSchemaAnnotated.d.ts +35 -0
- package/types/System/Xml/Schema/XmlSchemaAnnotation.d.ts +35 -0
- package/types/System/Xml/Schema/XmlSchemaAnyAttribute.d.ts +32 -0
- package/types/System/Xml/Schema/XmlSchemaAttribute.d.ts +54 -0
- package/types/System/Xml/Schema/XmlSchemaCompilationSettings.d.ts +28 -0
- package/types/System/Xml/Schema/XmlSchemaComplexType.d.ts +59 -0
- package/types/System/Xml/Schema/XmlSchemaContent.d.ts +17 -0
- package/types/System/Xml/Schema/XmlSchemaContentModel.d.ts +25 -0
- package/types/System/Xml/Schema/XmlSchemaContentProcessing.d.ts +34 -0
- package/types/System/Xml/Schema/XmlSchemaContentType.d.ts +33 -0
- package/types/System/Xml/Schema/XmlSchemaDatatype.d.ts +45 -0
- package/types/System/Xml/Schema/XmlSchemaDatatypeVariety.d.ts +32 -0
- package/types/System/Xml/Schema/XmlSchemaDerivationMethod.d.ts +38 -0
- package/types/System/Xml/Schema/XmlSchemaElement.d.ts +69 -0
- package/types/System/Xml/Schema/XmlSchemaException.d.ts +62 -0
- package/types/System/Xml/Schema/XmlSchemaForm.d.ts +29 -0
- package/types/System/Xml/Schema/XmlSchemaObject.d.ts +26 -0
- package/types/System/Xml/Schema/XmlSchemaObjectCollection.d.ts +66 -0
- package/types/System/Xml/Schema/XmlSchemaObjectEnumerator.d.ts +31 -0
- package/types/System/Xml/Schema/XmlSchemaObjectTable.d.ts +36 -0
- package/types/System/Xml/Schema/XmlSchemaParticle.d.ts +27 -0
- package/types/System/Xml/Schema/XmlSchemaSet.d.ts +71 -0
- package/types/System/Xml/Schema/XmlSchemaSimpleType.d.ts +28 -0
- package/types/System/Xml/Schema/XmlSchemaSimpleTypeContent.d.ts +21 -0
- package/types/System/Xml/Schema/XmlSchemaType.d.ts +72 -0
- package/types/System/Xml/Schema/XmlSchemaUse.d.ts +30 -0
- package/types/System/Xml/Schema/XmlSchemaValidationFlags.d.ts +35 -0
- package/types/System/Xml/Schema/XmlSchemaValidity.d.ts +29 -0
- package/types/System/Xml/Schema/XmlSeverityType.d.ts +28 -0
- package/types/System/Xml/Schema/XmlTypeCode.d.ts +81 -0
- package/types/System/Xml/Serialization/IXmlSerializable.d.ts +33 -0
- package/types/System/Xml/Serialization/XmlSerializerNamespaces.d.ts +34 -0
- package/types/System/Xml/ValidationType.d.ts +27 -0
- package/types/System/Xml/WriteState.d.ts +29 -0
- package/types/System/Xml/XPath/IXPathNavigable.d.ts +28 -0
- package/types/System/Xml/XPath/XPathExpression.d.ts +48 -0
- package/types/System/Xml/XPath/XPathItem.d.ts +36 -0
- package/types/System/Xml/XPath/XPathNamespaceScope.d.ts +29 -0
- package/types/System/Xml/XPath/XPathNavigator.d.ts +306 -0
- package/types/System/Xml/XPath/XPathNodeIterator.d.ts +34 -0
- package/types/System/Xml/XPath/XPathNodeType.d.ts +36 -0
- package/types/System/Xml/XPath/XPathResultType.d.ts +33 -0
- package/types/System/Xml/XPath/XmlCaseOrder.d.ts +29 -0
- package/types/System/Xml/XPath/XmlDataType.d.ts +28 -0
- package/types/System/Xml/XPath/XmlSortOrder.d.ts +28 -0
- package/types/System/Xml/XmlAttribute.d.ts +87 -0
- package/types/System/Xml/XmlAttributeCollection.d.ts +73 -0
- package/types/System/Xml/XmlCDataSection.d.ts +47 -0
- package/types/System/Xml/XmlCharacterData.d.ts +61 -0
- package/types/System/Xml/XmlComment.d.ts +38 -0
- package/types/System/Xml/XmlDeclaration.d.ts +53 -0
- package/types/System/Xml/XmlDocument.d.ts +217 -0
- package/types/System/Xml/XmlDocumentFragment.d.ts +52 -0
- package/types/System/Xml/XmlDocumentType.d.ts +56 -0
- package/types/System/Xml/XmlElement.d.ts +105 -0
- package/types/System/Xml/XmlEntityReference.d.ts +52 -0
- package/types/System/Xml/XmlImplementation.d.ts +31 -0
- package/types/System/Xml/XmlLinkedNode.d.ts +27 -0
- package/types/System/Xml/XmlNameTable.d.ts +36 -0
- package/types/System/Xml/XmlNamedNodeMap.d.ts +33 -0
- package/types/System/Xml/XmlNamespaceManager.d.ts +47 -0
- package/types/System/Xml/XmlNamespaceScope.d.ts +25 -0
- package/types/System/Xml/XmlNode.d.ts +94 -0
- package/types/System/Xml/XmlNodeChangedAction.d.ts +28 -0
- package/types/System/Xml/XmlNodeChangedEventArgs.d.ts +40 -0
- package/types/System/Xml/XmlNodeChangedEventHandler.d.ts +36 -0
- package/types/System/Xml/XmlNodeList.d.ts +33 -0
- package/types/System/Xml/XmlNodeOrder.d.ts +26 -0
- package/types/System/Xml/XmlNodeType.d.ts +40 -0
- package/types/System/Xml/XmlOutputMethod.d.ts +26 -0
- package/types/System/Xml/XmlParserContext.d.ts +72 -0
- package/types/System/Xml/XmlProcessingInstruction.d.ts +54 -0
- package/types/System/Xml/XmlQualifiedName.d.ts +36 -0
- package/types/System/Xml/XmlReader.d.ts +264 -0
- package/types/System/Xml/XmlReaderSettings.d.ts +60 -0
- package/types/System/Xml/XmlResolver.d.ts +40 -0
- package/types/System/Xml/XmlSignificantWhitespace.d.ts +52 -0
- package/types/System/Xml/XmlSpace.d.ts +25 -0
- package/types/System/Xml/XmlText.d.ts +56 -0
- package/types/System/Xml/XmlTokenizedType.d.ts +35 -0
- package/types/System/Xml/XmlWhitespace.d.ts +49 -0
- package/types/System/Xml/XmlWriter.d.ts +228 -0
- package/types/System/Xml/XmlWriterSettings.d.ts +49 -0
- package/types/Vanara/PInvoke/POINT.d.ts +42 -0
- package/types/Vanara/PInvoke/PRECT.d.ts +61 -0
- package/types/Vanara/PInvoke/RECT.d.ts +58 -0
- package/types/Vanara/PInvoke/SIZE.d.ts +38 -0
- package/types/Vanara/PInvoke/User32.d.ts +242 -0
- package/enums/country.d.ts +0 -20
- package/objects/dispatcher.d.ts +0 -129
- package/objects/file.d.ts +0 -138
- package/objects/genshin.d.ts +0 -262
- package/objects/globalMethod.d.ts +0 -161
- package/objects/host.d.ts +0 -363
- package/objects/http.d.ts +0 -46
- package/objects/keyMouseHook.d.ts +0 -70
- package/objects/keyMouseScript.d.ts +0 -20
- package/objects/log.d.ts +0 -38
- package/objects/notification.d.ts +0 -20
- package/objects/pathingScript.d.ts +0 -56
- package/objects/settings.d.ts +0 -9
- package/types/BetterGenshinImpact/GameTask/AutoLeyLineOutcrop/FightFinishDetectConfig.d.ts +0 -39
- package/types/System/Exception.d.ts +0 -9
- package/types/System/Tuple.d.ts +0 -184
|
@@ -0,0 +1,1289 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ByteHost,
|
|
3
|
+
EnumInput,
|
|
4
|
+
HostArray,
|
|
5
|
+
HostDelegate,
|
|
6
|
+
HostType,
|
|
7
|
+
Int32Host,
|
|
8
|
+
ReferenceTypeTrait,
|
|
9
|
+
SingleHost,
|
|
10
|
+
StrongNumeric
|
|
11
|
+
} from "../../Microsoft/ClearScript/HostType";
|
|
12
|
+
import type { HostVariableOut } from "../../Microsoft/ClearScript/HostVariable";
|
|
13
|
+
import type { VoidResult } from "../../Microsoft/ClearScript/VoidResult";
|
|
14
|
+
import "../AsyncCallback";
|
|
15
|
+
import "../IAsyncResult";
|
|
16
|
+
import "../ICloneable";
|
|
17
|
+
import "../IDisposable";
|
|
18
|
+
import "../IntPtr";
|
|
19
|
+
import "../MarshalByRefObject";
|
|
20
|
+
import "../MulticastDelegate";
|
|
21
|
+
import "../Numerics/Matrix3x2";
|
|
22
|
+
import "../Runtime/Serialization/ISerializable";
|
|
23
|
+
import "./Brush";
|
|
24
|
+
import "./Color";
|
|
25
|
+
import "./CopyPixelOperation";
|
|
26
|
+
import "./Drawing2D/CombineMode";
|
|
27
|
+
import "./Drawing2D/CompositingMode";
|
|
28
|
+
import "./Drawing2D/CompositingQuality";
|
|
29
|
+
import "./Drawing2D/CoordinateSpace";
|
|
30
|
+
import "./Drawing2D/FillMode";
|
|
31
|
+
import "./Drawing2D/FlushIntention";
|
|
32
|
+
import "./Drawing2D/GraphicsContainer";
|
|
33
|
+
import "./Drawing2D/GraphicsPath";
|
|
34
|
+
import "./Drawing2D/GraphicsState";
|
|
35
|
+
import "./Drawing2D/InterpolationMode";
|
|
36
|
+
import "./Drawing2D/Matrix";
|
|
37
|
+
import "./Drawing2D/MatrixOrder";
|
|
38
|
+
import "./Drawing2D/PixelOffsetMode";
|
|
39
|
+
import "./Drawing2D/SmoothingMode";
|
|
40
|
+
import "./Font";
|
|
41
|
+
import "./GraphicsUnit";
|
|
42
|
+
import "./IDeviceContext";
|
|
43
|
+
import "./Icon";
|
|
44
|
+
import "./Image";
|
|
45
|
+
import "./Imaging/CachedBitmap";
|
|
46
|
+
import "./Imaging/EmfPlusRecordType";
|
|
47
|
+
import "./Imaging/ImageAttributes";
|
|
48
|
+
import "./Imaging/Metafile";
|
|
49
|
+
import "./Imaging/PlayRecordCallback";
|
|
50
|
+
import "./Pen";
|
|
51
|
+
import "./Point";
|
|
52
|
+
import "./PointF";
|
|
53
|
+
import "./Rectangle";
|
|
54
|
+
import "./RectangleF";
|
|
55
|
+
import "./Region";
|
|
56
|
+
import "./Size";
|
|
57
|
+
import "./SizeF";
|
|
58
|
+
import "./StringFormat";
|
|
59
|
+
import "./Text/TextRenderingHint";
|
|
60
|
+
|
|
61
|
+
declare const graphicsBrand: unique symbol;
|
|
62
|
+
export interface Graphics
|
|
63
|
+
extends
|
|
64
|
+
Omit<
|
|
65
|
+
System.MarshalByRefObject,
|
|
66
|
+
| "addMetafileComment"
|
|
67
|
+
| "beginContainer"
|
|
68
|
+
| "clear"
|
|
69
|
+
| "clip"
|
|
70
|
+
| "clipBounds"
|
|
71
|
+
| "compositingMode"
|
|
72
|
+
| "compositingQuality"
|
|
73
|
+
| "copyFromScreen"
|
|
74
|
+
| "dispose"
|
|
75
|
+
| "dpiX"
|
|
76
|
+
| "dpiY"
|
|
77
|
+
| "drawArc"
|
|
78
|
+
| "drawBezier"
|
|
79
|
+
| "drawBeziers"
|
|
80
|
+
| "drawCachedBitmap"
|
|
81
|
+
| "drawClosedCurve"
|
|
82
|
+
| "drawCurve"
|
|
83
|
+
| "drawEllipse"
|
|
84
|
+
| "drawIcon"
|
|
85
|
+
| "drawIconUnstretched"
|
|
86
|
+
| "drawImage"
|
|
87
|
+
| "drawImageUnscaled"
|
|
88
|
+
| "drawImageUnscaledAndClipped"
|
|
89
|
+
| "drawLine"
|
|
90
|
+
| "drawLines"
|
|
91
|
+
| "drawPath"
|
|
92
|
+
| "drawPie"
|
|
93
|
+
| "drawPolygon"
|
|
94
|
+
| "drawRectangle"
|
|
95
|
+
| "drawRectangles"
|
|
96
|
+
| "drawString"
|
|
97
|
+
| "endContainer"
|
|
98
|
+
| "enumerateMetafile"
|
|
99
|
+
| "excludeClip"
|
|
100
|
+
| "fillClosedCurve"
|
|
101
|
+
| "fillEllipse"
|
|
102
|
+
| "fillPath"
|
|
103
|
+
| "fillPie"
|
|
104
|
+
| "fillPolygon"
|
|
105
|
+
| "fillRectangle"
|
|
106
|
+
| "fillRectangles"
|
|
107
|
+
| "fillRegion"
|
|
108
|
+
| "flush"
|
|
109
|
+
| "getContextInfo"
|
|
110
|
+
| "getHdc"
|
|
111
|
+
| "getNearestColor"
|
|
112
|
+
| "interpolationMode"
|
|
113
|
+
| "intersectClip"
|
|
114
|
+
| "isClipEmpty"
|
|
115
|
+
| "isVisible"
|
|
116
|
+
| "isVisibleClipEmpty"
|
|
117
|
+
| "measureCharacterRanges"
|
|
118
|
+
| "measureString"
|
|
119
|
+
| "measureStringInternal"
|
|
120
|
+
| "multiplyTransform"
|
|
121
|
+
| "pageScale"
|
|
122
|
+
| "pageUnit"
|
|
123
|
+
| "pixelOffsetMode"
|
|
124
|
+
| "releaseHdc"
|
|
125
|
+
| "releaseHdcInternal"
|
|
126
|
+
| "renderingOrigin"
|
|
127
|
+
| "resetClip"
|
|
128
|
+
| "resetTransform"
|
|
129
|
+
| "restore"
|
|
130
|
+
| "rotateTransform"
|
|
131
|
+
| "save"
|
|
132
|
+
| "scaleTransform"
|
|
133
|
+
| "setClip"
|
|
134
|
+
| "smoothingMode"
|
|
135
|
+
| "textContrast"
|
|
136
|
+
| "textRenderingHint"
|
|
137
|
+
| "transform"
|
|
138
|
+
| "transformElements"
|
|
139
|
+
| "transformPoints"
|
|
140
|
+
| "translateClip"
|
|
141
|
+
| "translateTransform"
|
|
142
|
+
| "visibleClipBounds"
|
|
143
|
+
>,
|
|
144
|
+
System.IDisposableInput,
|
|
145
|
+
System.Drawing.IDeviceContextInput {
|
|
146
|
+
readonly [graphicsBrand]: true;
|
|
147
|
+
addMetafileComment(data: HostArray<number | StrongNumeric<ByteHost>>): VoidResult;
|
|
148
|
+
beginContainer(): System.Drawing.Drawing2D.GraphicsContainer;
|
|
149
|
+
beginContainer(
|
|
150
|
+
dstrect: System.Drawing.Rectangle,
|
|
151
|
+
srcrect: System.Drawing.Rectangle,
|
|
152
|
+
unit: EnumInput<System.Drawing.GraphicsUnit>
|
|
153
|
+
): System.Drawing.Drawing2D.GraphicsContainer;
|
|
154
|
+
beginContainer(
|
|
155
|
+
dstrect: System.Drawing.RectangleF,
|
|
156
|
+
srcrect: System.Drawing.RectangleF,
|
|
157
|
+
unit: EnumInput<System.Drawing.GraphicsUnit>
|
|
158
|
+
): System.Drawing.Drawing2D.GraphicsContainer;
|
|
159
|
+
clear(color: System.Drawing.Color): VoidResult;
|
|
160
|
+
clip: System.Drawing.Region;
|
|
161
|
+
compositingMode: System.Drawing.Drawing2D.CompositingMode;
|
|
162
|
+
compositingQuality: System.Drawing.Drawing2D.CompositingQuality;
|
|
163
|
+
copyFromScreen(
|
|
164
|
+
sourceX: number | StrongNumeric<Int32Host>,
|
|
165
|
+
sourceY: number | StrongNumeric<Int32Host>,
|
|
166
|
+
destinationX: number | StrongNumeric<Int32Host>,
|
|
167
|
+
destinationY: number | StrongNumeric<Int32Host>,
|
|
168
|
+
blockRegionSize: System.Drawing.Size
|
|
169
|
+
): VoidResult;
|
|
170
|
+
copyFromScreen(
|
|
171
|
+
sourceX: number | StrongNumeric<Int32Host>,
|
|
172
|
+
sourceY: number | StrongNumeric<Int32Host>,
|
|
173
|
+
destinationX: number | StrongNumeric<Int32Host>,
|
|
174
|
+
destinationY: number | StrongNumeric<Int32Host>,
|
|
175
|
+
blockRegionSize: System.Drawing.Size,
|
|
176
|
+
copyPixelOperation: EnumInput<System.Drawing.CopyPixelOperation>
|
|
177
|
+
): VoidResult;
|
|
178
|
+
copyFromScreen(
|
|
179
|
+
upperLeftSource: System.Drawing.Point,
|
|
180
|
+
upperLeftDestination: System.Drawing.Point,
|
|
181
|
+
blockRegionSize: System.Drawing.Size
|
|
182
|
+
): VoidResult;
|
|
183
|
+
copyFromScreen(
|
|
184
|
+
upperLeftSource: System.Drawing.Point,
|
|
185
|
+
upperLeftDestination: System.Drawing.Point,
|
|
186
|
+
blockRegionSize: System.Drawing.Size,
|
|
187
|
+
copyPixelOperation: EnumInput<System.Drawing.CopyPixelOperation>
|
|
188
|
+
): VoidResult;
|
|
189
|
+
dispose(): VoidResult;
|
|
190
|
+
drawArc(
|
|
191
|
+
pen: System.Drawing.Pen,
|
|
192
|
+
rect: System.Drawing.Rectangle,
|
|
193
|
+
startAngle: number | StrongNumeric<SingleHost>,
|
|
194
|
+
sweepAngle: number | StrongNumeric<SingleHost>
|
|
195
|
+
): VoidResult;
|
|
196
|
+
drawArc(
|
|
197
|
+
pen: System.Drawing.Pen,
|
|
198
|
+
rect: System.Drawing.RectangleF,
|
|
199
|
+
startAngle: number | StrongNumeric<SingleHost>,
|
|
200
|
+
sweepAngle: number | StrongNumeric<SingleHost>
|
|
201
|
+
): VoidResult;
|
|
202
|
+
drawArc(
|
|
203
|
+
pen: System.Drawing.Pen,
|
|
204
|
+
x: number | StrongNumeric<Int32Host>,
|
|
205
|
+
y: number | StrongNumeric<Int32Host>,
|
|
206
|
+
width: number | StrongNumeric<Int32Host>,
|
|
207
|
+
height: number | StrongNumeric<Int32Host>,
|
|
208
|
+
startAngle: number | StrongNumeric<Int32Host>,
|
|
209
|
+
sweepAngle: number | StrongNumeric<Int32Host>
|
|
210
|
+
): VoidResult;
|
|
211
|
+
drawArc(
|
|
212
|
+
pen: System.Drawing.Pen,
|
|
213
|
+
x: number | StrongNumeric<SingleHost>,
|
|
214
|
+
y: number | StrongNumeric<SingleHost>,
|
|
215
|
+
width: number | StrongNumeric<SingleHost>,
|
|
216
|
+
height: number | StrongNumeric<SingleHost>,
|
|
217
|
+
startAngle: number | StrongNumeric<SingleHost>,
|
|
218
|
+
sweepAngle: number | StrongNumeric<SingleHost>
|
|
219
|
+
): VoidResult;
|
|
220
|
+
drawBezier(
|
|
221
|
+
pen: System.Drawing.Pen,
|
|
222
|
+
pt1: System.Drawing.Point,
|
|
223
|
+
pt2: System.Drawing.Point,
|
|
224
|
+
pt3: System.Drawing.Point,
|
|
225
|
+
pt4: System.Drawing.Point
|
|
226
|
+
): VoidResult;
|
|
227
|
+
drawBezier(
|
|
228
|
+
pen: System.Drawing.Pen,
|
|
229
|
+
pt1: System.Drawing.PointF,
|
|
230
|
+
pt2: System.Drawing.PointF,
|
|
231
|
+
pt3: System.Drawing.PointF,
|
|
232
|
+
pt4: System.Drawing.PointF
|
|
233
|
+
): VoidResult;
|
|
234
|
+
drawBezier(
|
|
235
|
+
pen: System.Drawing.Pen,
|
|
236
|
+
x1: number | StrongNumeric<SingleHost>,
|
|
237
|
+
y1: number | StrongNumeric<SingleHost>,
|
|
238
|
+
x2: number | StrongNumeric<SingleHost>,
|
|
239
|
+
y2: number | StrongNumeric<SingleHost>,
|
|
240
|
+
x3: number | StrongNumeric<SingleHost>,
|
|
241
|
+
y3: number | StrongNumeric<SingleHost>,
|
|
242
|
+
x4: number | StrongNumeric<SingleHost>,
|
|
243
|
+
y4: number | StrongNumeric<SingleHost>
|
|
244
|
+
): VoidResult;
|
|
245
|
+
drawBeziers(pen: System.Drawing.Pen, ...points: System.Drawing.PointF[]): VoidResult;
|
|
246
|
+
drawBeziers(pen: System.Drawing.Pen, ...points: System.Drawing.Point[]): VoidResult;
|
|
247
|
+
drawBeziers(pen: System.Drawing.Pen, points: HostArray<System.Drawing.Point>): VoidResult;
|
|
248
|
+
drawBeziers(pen: System.Drawing.Pen, points: HostArray<System.Drawing.PointF>): VoidResult;
|
|
249
|
+
drawCachedBitmap(
|
|
250
|
+
cachedBitmap: System.Drawing.Imaging.CachedBitmap,
|
|
251
|
+
x: number | StrongNumeric<Int32Host>,
|
|
252
|
+
y: number | StrongNumeric<Int32Host>
|
|
253
|
+
): VoidResult;
|
|
254
|
+
drawClosedCurve(pen: System.Drawing.Pen, ...points: System.Drawing.PointF[]): VoidResult;
|
|
255
|
+
drawClosedCurve(pen: System.Drawing.Pen, ...points: System.Drawing.Point[]): VoidResult;
|
|
256
|
+
drawClosedCurve(pen: System.Drawing.Pen, points: HostArray<System.Drawing.Point>): VoidResult;
|
|
257
|
+
drawClosedCurve(
|
|
258
|
+
pen: System.Drawing.Pen,
|
|
259
|
+
points: HostArray<System.Drawing.Point>,
|
|
260
|
+
tension: number | StrongNumeric<SingleHost>,
|
|
261
|
+
fillmode: EnumInput<System.Drawing.Drawing2D.FillMode>
|
|
262
|
+
): VoidResult;
|
|
263
|
+
drawClosedCurve(pen: System.Drawing.Pen, points: HostArray<System.Drawing.PointF>): VoidResult;
|
|
264
|
+
drawClosedCurve(
|
|
265
|
+
pen: System.Drawing.Pen,
|
|
266
|
+
points: HostArray<System.Drawing.PointF>,
|
|
267
|
+
tension: number | StrongNumeric<SingleHost>,
|
|
268
|
+
fillmode: EnumInput<System.Drawing.Drawing2D.FillMode>
|
|
269
|
+
): VoidResult;
|
|
270
|
+
drawCurve(pen: System.Drawing.Pen, ...points: System.Drawing.PointF[]): VoidResult;
|
|
271
|
+
drawCurve(pen: System.Drawing.Pen, ...points: System.Drawing.Point[]): VoidResult;
|
|
272
|
+
drawCurve(pen: System.Drawing.Pen, points: HostArray<System.Drawing.Point>): VoidResult;
|
|
273
|
+
drawCurve(
|
|
274
|
+
pen: System.Drawing.Pen,
|
|
275
|
+
points: HostArray<System.Drawing.Point>,
|
|
276
|
+
offset: number | StrongNumeric<Int32Host>,
|
|
277
|
+
numberOfSegments: number | StrongNumeric<Int32Host>,
|
|
278
|
+
tension: number | StrongNumeric<SingleHost>
|
|
279
|
+
): VoidResult;
|
|
280
|
+
drawCurve(
|
|
281
|
+
pen: System.Drawing.Pen,
|
|
282
|
+
points: HostArray<System.Drawing.Point>,
|
|
283
|
+
tension: number | StrongNumeric<SingleHost>
|
|
284
|
+
): VoidResult;
|
|
285
|
+
drawCurve(pen: System.Drawing.Pen, points: HostArray<System.Drawing.PointF>): VoidResult;
|
|
286
|
+
drawCurve(
|
|
287
|
+
pen: System.Drawing.Pen,
|
|
288
|
+
points: HostArray<System.Drawing.PointF>,
|
|
289
|
+
offset: number | StrongNumeric<Int32Host>,
|
|
290
|
+
numberOfSegments: number | StrongNumeric<Int32Host>
|
|
291
|
+
): VoidResult;
|
|
292
|
+
drawCurve(
|
|
293
|
+
pen: System.Drawing.Pen,
|
|
294
|
+
points: HostArray<System.Drawing.PointF>,
|
|
295
|
+
offset: number | StrongNumeric<Int32Host>,
|
|
296
|
+
numberOfSegments: number | StrongNumeric<Int32Host>,
|
|
297
|
+
tension: number | StrongNumeric<SingleHost>
|
|
298
|
+
): VoidResult;
|
|
299
|
+
drawCurve(
|
|
300
|
+
pen: System.Drawing.Pen,
|
|
301
|
+
points: HostArray<System.Drawing.PointF>,
|
|
302
|
+
tension: number | StrongNumeric<SingleHost>
|
|
303
|
+
): VoidResult;
|
|
304
|
+
drawEllipse(pen: System.Drawing.Pen, rect: System.Drawing.Rectangle): VoidResult;
|
|
305
|
+
drawEllipse(pen: System.Drawing.Pen, rect: System.Drawing.RectangleF): VoidResult;
|
|
306
|
+
drawEllipse(
|
|
307
|
+
pen: System.Drawing.Pen,
|
|
308
|
+
x: number | StrongNumeric<Int32Host>,
|
|
309
|
+
y: number | StrongNumeric<Int32Host>,
|
|
310
|
+
width: number | StrongNumeric<Int32Host>,
|
|
311
|
+
height: number | StrongNumeric<Int32Host>
|
|
312
|
+
): VoidResult;
|
|
313
|
+
drawEllipse(
|
|
314
|
+
pen: System.Drawing.Pen,
|
|
315
|
+
x: number | StrongNumeric<SingleHost>,
|
|
316
|
+
y: number | StrongNumeric<SingleHost>,
|
|
317
|
+
width: number | StrongNumeric<SingleHost>,
|
|
318
|
+
height: number | StrongNumeric<SingleHost>
|
|
319
|
+
): VoidResult;
|
|
320
|
+
drawIcon(icon: System.Drawing.Icon, targetRect: System.Drawing.Rectangle): VoidResult;
|
|
321
|
+
drawIcon(
|
|
322
|
+
icon: System.Drawing.Icon,
|
|
323
|
+
x: number | StrongNumeric<Int32Host>,
|
|
324
|
+
y: number | StrongNumeric<Int32Host>
|
|
325
|
+
): VoidResult;
|
|
326
|
+
drawIconUnstretched(icon: System.Drawing.Icon, targetRect: System.Drawing.Rectangle): VoidResult;
|
|
327
|
+
drawImage(image: System.Drawing.Image, destPoints: HostArray<System.Drawing.Point>): VoidResult;
|
|
328
|
+
drawImage(
|
|
329
|
+
image: System.Drawing.Image,
|
|
330
|
+
destPoints: HostArray<System.Drawing.Point>,
|
|
331
|
+
srcRect: System.Drawing.Rectangle,
|
|
332
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>
|
|
333
|
+
): VoidResult;
|
|
334
|
+
drawImage(
|
|
335
|
+
image: System.Drawing.Image,
|
|
336
|
+
destPoints: HostArray<System.Drawing.Point>,
|
|
337
|
+
srcRect: System.Drawing.Rectangle,
|
|
338
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
339
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
340
|
+
): VoidResult;
|
|
341
|
+
drawImage(
|
|
342
|
+
image: System.Drawing.Image,
|
|
343
|
+
destPoints: HostArray<System.Drawing.Point>,
|
|
344
|
+
srcRect: System.Drawing.Rectangle,
|
|
345
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
346
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null,
|
|
347
|
+
callback: Graphics_DrawImageAbort | null
|
|
348
|
+
): VoidResult;
|
|
349
|
+
drawImage(
|
|
350
|
+
image: System.Drawing.Image,
|
|
351
|
+
destPoints: HostArray<System.Drawing.Point>,
|
|
352
|
+
srcRect: System.Drawing.Rectangle,
|
|
353
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
354
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null,
|
|
355
|
+
callback: Graphics_DrawImageAbort | null,
|
|
356
|
+
callbackData: number | StrongNumeric<Int32Host>
|
|
357
|
+
): VoidResult;
|
|
358
|
+
drawImage(image: System.Drawing.Image, destPoints: HostArray<System.Drawing.PointF>): VoidResult;
|
|
359
|
+
drawImage(
|
|
360
|
+
image: System.Drawing.Image,
|
|
361
|
+
destPoints: HostArray<System.Drawing.PointF>,
|
|
362
|
+
srcRect: System.Drawing.RectangleF,
|
|
363
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>
|
|
364
|
+
): VoidResult;
|
|
365
|
+
drawImage(
|
|
366
|
+
image: System.Drawing.Image,
|
|
367
|
+
destPoints: HostArray<System.Drawing.PointF>,
|
|
368
|
+
srcRect: System.Drawing.RectangleF,
|
|
369
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
370
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
371
|
+
): VoidResult;
|
|
372
|
+
drawImage(
|
|
373
|
+
image: System.Drawing.Image,
|
|
374
|
+
destPoints: HostArray<System.Drawing.PointF>,
|
|
375
|
+
srcRect: System.Drawing.RectangleF,
|
|
376
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
377
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null,
|
|
378
|
+
callback: Graphics_DrawImageAbort | null
|
|
379
|
+
): VoidResult;
|
|
380
|
+
drawImage(
|
|
381
|
+
image: System.Drawing.Image,
|
|
382
|
+
destPoints: HostArray<System.Drawing.PointF>,
|
|
383
|
+
srcRect: System.Drawing.RectangleF,
|
|
384
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
385
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null,
|
|
386
|
+
callback: Graphics_DrawImageAbort | null,
|
|
387
|
+
callbackData: number | StrongNumeric<Int32Host>
|
|
388
|
+
): VoidResult;
|
|
389
|
+
drawImage(
|
|
390
|
+
image: System.Drawing.Image,
|
|
391
|
+
destRect: System.Drawing.Rectangle,
|
|
392
|
+
srcRect: System.Drawing.Rectangle,
|
|
393
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>
|
|
394
|
+
): VoidResult;
|
|
395
|
+
drawImage(
|
|
396
|
+
image: System.Drawing.Image,
|
|
397
|
+
destRect: System.Drawing.Rectangle,
|
|
398
|
+
srcX: number | StrongNumeric<Int32Host>,
|
|
399
|
+
srcY: number | StrongNumeric<Int32Host>,
|
|
400
|
+
srcWidth: number | StrongNumeric<Int32Host>,
|
|
401
|
+
srcHeight: number | StrongNumeric<Int32Host>,
|
|
402
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>
|
|
403
|
+
): VoidResult;
|
|
404
|
+
drawImage(
|
|
405
|
+
image: System.Drawing.Image,
|
|
406
|
+
destRect: System.Drawing.Rectangle,
|
|
407
|
+
srcX: number | StrongNumeric<Int32Host>,
|
|
408
|
+
srcY: number | StrongNumeric<Int32Host>,
|
|
409
|
+
srcWidth: number | StrongNumeric<Int32Host>,
|
|
410
|
+
srcHeight: number | StrongNumeric<Int32Host>,
|
|
411
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
412
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
413
|
+
): VoidResult;
|
|
414
|
+
drawImage(
|
|
415
|
+
image: System.Drawing.Image,
|
|
416
|
+
destRect: System.Drawing.Rectangle,
|
|
417
|
+
srcX: number | StrongNumeric<Int32Host>,
|
|
418
|
+
srcY: number | StrongNumeric<Int32Host>,
|
|
419
|
+
srcWidth: number | StrongNumeric<Int32Host>,
|
|
420
|
+
srcHeight: number | StrongNumeric<Int32Host>,
|
|
421
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
422
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null,
|
|
423
|
+
callback: Graphics_DrawImageAbort | null
|
|
424
|
+
): VoidResult;
|
|
425
|
+
drawImage(
|
|
426
|
+
image: System.Drawing.Image,
|
|
427
|
+
destRect: System.Drawing.Rectangle,
|
|
428
|
+
srcX: number | StrongNumeric<Int32Host>,
|
|
429
|
+
srcY: number | StrongNumeric<Int32Host>,
|
|
430
|
+
srcWidth: number | StrongNumeric<Int32Host>,
|
|
431
|
+
srcHeight: number | StrongNumeric<Int32Host>,
|
|
432
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
433
|
+
imageAttrs: System.Drawing.Imaging.ImageAttributes | null,
|
|
434
|
+
callback: Graphics_DrawImageAbort | null,
|
|
435
|
+
callbackData: System.IntPtr
|
|
436
|
+
): VoidResult;
|
|
437
|
+
drawImage(
|
|
438
|
+
image: System.Drawing.Image,
|
|
439
|
+
destRect: System.Drawing.Rectangle,
|
|
440
|
+
srcX: number | StrongNumeric<SingleHost>,
|
|
441
|
+
srcY: number | StrongNumeric<SingleHost>,
|
|
442
|
+
srcWidth: number | StrongNumeric<SingleHost>,
|
|
443
|
+
srcHeight: number | StrongNumeric<SingleHost>,
|
|
444
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>
|
|
445
|
+
): VoidResult;
|
|
446
|
+
drawImage(
|
|
447
|
+
image: System.Drawing.Image,
|
|
448
|
+
destRect: System.Drawing.Rectangle,
|
|
449
|
+
srcX: number | StrongNumeric<SingleHost>,
|
|
450
|
+
srcY: number | StrongNumeric<SingleHost>,
|
|
451
|
+
srcWidth: number | StrongNumeric<SingleHost>,
|
|
452
|
+
srcHeight: number | StrongNumeric<SingleHost>,
|
|
453
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
454
|
+
imageAttrs: System.Drawing.Imaging.ImageAttributes | null
|
|
455
|
+
): VoidResult;
|
|
456
|
+
drawImage(
|
|
457
|
+
image: System.Drawing.Image,
|
|
458
|
+
destRect: System.Drawing.Rectangle,
|
|
459
|
+
srcX: number | StrongNumeric<SingleHost>,
|
|
460
|
+
srcY: number | StrongNumeric<SingleHost>,
|
|
461
|
+
srcWidth: number | StrongNumeric<SingleHost>,
|
|
462
|
+
srcHeight: number | StrongNumeric<SingleHost>,
|
|
463
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
464
|
+
imageAttrs: System.Drawing.Imaging.ImageAttributes | null,
|
|
465
|
+
callback: Graphics_DrawImageAbort | null
|
|
466
|
+
): VoidResult;
|
|
467
|
+
drawImage(
|
|
468
|
+
image: System.Drawing.Image,
|
|
469
|
+
destRect: System.Drawing.Rectangle,
|
|
470
|
+
srcX: number | StrongNumeric<SingleHost>,
|
|
471
|
+
srcY: number | StrongNumeric<SingleHost>,
|
|
472
|
+
srcWidth: number | StrongNumeric<SingleHost>,
|
|
473
|
+
srcHeight: number | StrongNumeric<SingleHost>,
|
|
474
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
475
|
+
imageAttrs: System.Drawing.Imaging.ImageAttributes | null,
|
|
476
|
+
callback: Graphics_DrawImageAbort | null,
|
|
477
|
+
callbackData: System.IntPtr
|
|
478
|
+
): VoidResult;
|
|
479
|
+
drawImage(
|
|
480
|
+
image: System.Drawing.Image,
|
|
481
|
+
destRect: System.Drawing.RectangleF,
|
|
482
|
+
srcRect: System.Drawing.RectangleF,
|
|
483
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>
|
|
484
|
+
): VoidResult;
|
|
485
|
+
drawImage(image: System.Drawing.Image, point: System.Drawing.Point): VoidResult;
|
|
486
|
+
drawImage(image: System.Drawing.Image, point: System.Drawing.PointF): VoidResult;
|
|
487
|
+
drawImage(image: System.Drawing.Image, rect: System.Drawing.Rectangle): VoidResult;
|
|
488
|
+
drawImage(image: System.Drawing.Image, rect: System.Drawing.RectangleF): VoidResult;
|
|
489
|
+
drawImage(
|
|
490
|
+
image: System.Drawing.Image,
|
|
491
|
+
x: number | StrongNumeric<Int32Host>,
|
|
492
|
+
y: number | StrongNumeric<Int32Host>
|
|
493
|
+
): VoidResult;
|
|
494
|
+
drawImage(
|
|
495
|
+
image: System.Drawing.Image,
|
|
496
|
+
x: number | StrongNumeric<Int32Host>,
|
|
497
|
+
y: number | StrongNumeric<Int32Host>,
|
|
498
|
+
srcRect: System.Drawing.Rectangle,
|
|
499
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>
|
|
500
|
+
): VoidResult;
|
|
501
|
+
drawImage(
|
|
502
|
+
image: System.Drawing.Image,
|
|
503
|
+
x: number | StrongNumeric<Int32Host>,
|
|
504
|
+
y: number | StrongNumeric<Int32Host>,
|
|
505
|
+
width: number | StrongNumeric<Int32Host>,
|
|
506
|
+
height: number | StrongNumeric<Int32Host>
|
|
507
|
+
): VoidResult;
|
|
508
|
+
drawImage(
|
|
509
|
+
image: System.Drawing.Image,
|
|
510
|
+
x: number | StrongNumeric<SingleHost>,
|
|
511
|
+
y: number | StrongNumeric<SingleHost>
|
|
512
|
+
): VoidResult;
|
|
513
|
+
drawImage(
|
|
514
|
+
image: System.Drawing.Image,
|
|
515
|
+
x: number | StrongNumeric<SingleHost>,
|
|
516
|
+
y: number | StrongNumeric<SingleHost>,
|
|
517
|
+
srcRect: System.Drawing.RectangleF,
|
|
518
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>
|
|
519
|
+
): VoidResult;
|
|
520
|
+
drawImage(
|
|
521
|
+
image: System.Drawing.Image,
|
|
522
|
+
x: number | StrongNumeric<SingleHost>,
|
|
523
|
+
y: number | StrongNumeric<SingleHost>,
|
|
524
|
+
width: number | StrongNumeric<SingleHost>,
|
|
525
|
+
height: number | StrongNumeric<SingleHost>
|
|
526
|
+
): VoidResult;
|
|
527
|
+
drawImageUnscaled(image: System.Drawing.Image, point: System.Drawing.Point): VoidResult;
|
|
528
|
+
drawImageUnscaled(image: System.Drawing.Image, rect: System.Drawing.Rectangle): VoidResult;
|
|
529
|
+
drawImageUnscaled(
|
|
530
|
+
image: System.Drawing.Image,
|
|
531
|
+
x: number | StrongNumeric<Int32Host>,
|
|
532
|
+
y: number | StrongNumeric<Int32Host>
|
|
533
|
+
): VoidResult;
|
|
534
|
+
drawImageUnscaled(
|
|
535
|
+
image: System.Drawing.Image,
|
|
536
|
+
x: number | StrongNumeric<Int32Host>,
|
|
537
|
+
y: number | StrongNumeric<Int32Host>,
|
|
538
|
+
width: number | StrongNumeric<Int32Host>,
|
|
539
|
+
height: number | StrongNumeric<Int32Host>
|
|
540
|
+
): VoidResult;
|
|
541
|
+
drawImageUnscaledAndClipped(
|
|
542
|
+
image: System.Drawing.Image,
|
|
543
|
+
rect: System.Drawing.Rectangle
|
|
544
|
+
): VoidResult;
|
|
545
|
+
drawLine(
|
|
546
|
+
pen: System.Drawing.Pen,
|
|
547
|
+
pt1: System.Drawing.Point,
|
|
548
|
+
pt2: System.Drawing.Point
|
|
549
|
+
): VoidResult;
|
|
550
|
+
drawLine(
|
|
551
|
+
pen: System.Drawing.Pen,
|
|
552
|
+
pt1: System.Drawing.PointF,
|
|
553
|
+
pt2: System.Drawing.PointF
|
|
554
|
+
): VoidResult;
|
|
555
|
+
drawLine(
|
|
556
|
+
pen: System.Drawing.Pen,
|
|
557
|
+
x1: number | StrongNumeric<Int32Host>,
|
|
558
|
+
y1: number | StrongNumeric<Int32Host>,
|
|
559
|
+
x2: number | StrongNumeric<Int32Host>,
|
|
560
|
+
y2: number | StrongNumeric<Int32Host>
|
|
561
|
+
): VoidResult;
|
|
562
|
+
drawLine(
|
|
563
|
+
pen: System.Drawing.Pen,
|
|
564
|
+
x1: number | StrongNumeric<SingleHost>,
|
|
565
|
+
y1: number | StrongNumeric<SingleHost>,
|
|
566
|
+
x2: number | StrongNumeric<SingleHost>,
|
|
567
|
+
y2: number | StrongNumeric<SingleHost>
|
|
568
|
+
): VoidResult;
|
|
569
|
+
drawLines(pen: System.Drawing.Pen, ...points: System.Drawing.PointF[]): VoidResult;
|
|
570
|
+
drawLines(pen: System.Drawing.Pen, ...points: System.Drawing.Point[]): VoidResult;
|
|
571
|
+
drawLines(pen: System.Drawing.Pen, points: HostArray<System.Drawing.Point>): VoidResult;
|
|
572
|
+
drawLines(pen: System.Drawing.Pen, points: HostArray<System.Drawing.PointF>): VoidResult;
|
|
573
|
+
drawPath(pen: System.Drawing.Pen, path: System.Drawing.Drawing2D.GraphicsPath): VoidResult;
|
|
574
|
+
drawPie(
|
|
575
|
+
pen: System.Drawing.Pen,
|
|
576
|
+
rect: System.Drawing.Rectangle,
|
|
577
|
+
startAngle: number | StrongNumeric<SingleHost>,
|
|
578
|
+
sweepAngle: number | StrongNumeric<SingleHost>
|
|
579
|
+
): VoidResult;
|
|
580
|
+
drawPie(
|
|
581
|
+
pen: System.Drawing.Pen,
|
|
582
|
+
rect: System.Drawing.RectangleF,
|
|
583
|
+
startAngle: number | StrongNumeric<SingleHost>,
|
|
584
|
+
sweepAngle: number | StrongNumeric<SingleHost>
|
|
585
|
+
): VoidResult;
|
|
586
|
+
drawPie(
|
|
587
|
+
pen: System.Drawing.Pen,
|
|
588
|
+
x: number | StrongNumeric<Int32Host>,
|
|
589
|
+
y: number | StrongNumeric<Int32Host>,
|
|
590
|
+
width: number | StrongNumeric<Int32Host>,
|
|
591
|
+
height: number | StrongNumeric<Int32Host>,
|
|
592
|
+
startAngle: number | StrongNumeric<Int32Host>,
|
|
593
|
+
sweepAngle: number | StrongNumeric<Int32Host>
|
|
594
|
+
): VoidResult;
|
|
595
|
+
drawPie(
|
|
596
|
+
pen: System.Drawing.Pen,
|
|
597
|
+
x: number | StrongNumeric<SingleHost>,
|
|
598
|
+
y: number | StrongNumeric<SingleHost>,
|
|
599
|
+
width: number | StrongNumeric<SingleHost>,
|
|
600
|
+
height: number | StrongNumeric<SingleHost>,
|
|
601
|
+
startAngle: number | StrongNumeric<SingleHost>,
|
|
602
|
+
sweepAngle: number | StrongNumeric<SingleHost>
|
|
603
|
+
): VoidResult;
|
|
604
|
+
drawPolygon(pen: System.Drawing.Pen, ...points: System.Drawing.PointF[]): VoidResult;
|
|
605
|
+
drawPolygon(pen: System.Drawing.Pen, ...points: System.Drawing.Point[]): VoidResult;
|
|
606
|
+
drawPolygon(pen: System.Drawing.Pen, points: HostArray<System.Drawing.Point>): VoidResult;
|
|
607
|
+
drawPolygon(pen: System.Drawing.Pen, points: HostArray<System.Drawing.PointF>): VoidResult;
|
|
608
|
+
drawRectangle(pen: System.Drawing.Pen, rect: System.Drawing.Rectangle): VoidResult;
|
|
609
|
+
drawRectangle(pen: System.Drawing.Pen, rect: System.Drawing.RectangleF): VoidResult;
|
|
610
|
+
drawRectangle(
|
|
611
|
+
pen: System.Drawing.Pen,
|
|
612
|
+
x: number | StrongNumeric<Int32Host>,
|
|
613
|
+
y: number | StrongNumeric<Int32Host>,
|
|
614
|
+
width: number | StrongNumeric<Int32Host>,
|
|
615
|
+
height: number | StrongNumeric<Int32Host>
|
|
616
|
+
): VoidResult;
|
|
617
|
+
drawRectangle(
|
|
618
|
+
pen: System.Drawing.Pen,
|
|
619
|
+
x: number | StrongNumeric<SingleHost>,
|
|
620
|
+
y: number | StrongNumeric<SingleHost>,
|
|
621
|
+
width: number | StrongNumeric<SingleHost>,
|
|
622
|
+
height: number | StrongNumeric<SingleHost>
|
|
623
|
+
): VoidResult;
|
|
624
|
+
drawRectangles(pen: System.Drawing.Pen, ...rects: System.Drawing.RectangleF[]): VoidResult;
|
|
625
|
+
drawRectangles(pen: System.Drawing.Pen, ...rects: System.Drawing.Rectangle[]): VoidResult;
|
|
626
|
+
drawRectangles(pen: System.Drawing.Pen, rects: HostArray<System.Drawing.Rectangle>): VoidResult;
|
|
627
|
+
drawRectangles(pen: System.Drawing.Pen, rects: HostArray<System.Drawing.RectangleF>): VoidResult;
|
|
628
|
+
drawString(
|
|
629
|
+
s: string | null,
|
|
630
|
+
font: System.Drawing.Font,
|
|
631
|
+
brush: System.Drawing.Brush,
|
|
632
|
+
layoutRectangle: System.Drawing.RectangleF
|
|
633
|
+
): VoidResult;
|
|
634
|
+
drawString(
|
|
635
|
+
s: string | null,
|
|
636
|
+
font: System.Drawing.Font,
|
|
637
|
+
brush: System.Drawing.Brush,
|
|
638
|
+
layoutRectangle: System.Drawing.RectangleF,
|
|
639
|
+
format: System.Drawing.StringFormat | null
|
|
640
|
+
): VoidResult;
|
|
641
|
+
drawString(
|
|
642
|
+
s: string | null,
|
|
643
|
+
font: System.Drawing.Font,
|
|
644
|
+
brush: System.Drawing.Brush,
|
|
645
|
+
point: System.Drawing.PointF
|
|
646
|
+
): VoidResult;
|
|
647
|
+
drawString(
|
|
648
|
+
s: string | null,
|
|
649
|
+
font: System.Drawing.Font,
|
|
650
|
+
brush: System.Drawing.Brush,
|
|
651
|
+
point: System.Drawing.PointF,
|
|
652
|
+
format: System.Drawing.StringFormat | null
|
|
653
|
+
): VoidResult;
|
|
654
|
+
drawString(
|
|
655
|
+
s: string | null,
|
|
656
|
+
font: System.Drawing.Font,
|
|
657
|
+
brush: System.Drawing.Brush,
|
|
658
|
+
x: number | StrongNumeric<SingleHost>,
|
|
659
|
+
y: number | StrongNumeric<SingleHost>
|
|
660
|
+
): VoidResult;
|
|
661
|
+
drawString(
|
|
662
|
+
s: string | null,
|
|
663
|
+
font: System.Drawing.Font,
|
|
664
|
+
brush: System.Drawing.Brush,
|
|
665
|
+
x: number | StrongNumeric<SingleHost>,
|
|
666
|
+
y: number | StrongNumeric<SingleHost>,
|
|
667
|
+
format: System.Drawing.StringFormat | null
|
|
668
|
+
): VoidResult;
|
|
669
|
+
endContainer(container: System.Drawing.Drawing2D.GraphicsContainer): VoidResult;
|
|
670
|
+
enumerateMetafile(
|
|
671
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
672
|
+
destPoint: System.Drawing.Point,
|
|
673
|
+
callback: Graphics_EnumerateMetafileProc
|
|
674
|
+
): VoidResult;
|
|
675
|
+
enumerateMetafile(
|
|
676
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
677
|
+
destPoint: System.Drawing.Point,
|
|
678
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
679
|
+
callbackData: System.IntPtr
|
|
680
|
+
): VoidResult;
|
|
681
|
+
enumerateMetafile(
|
|
682
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
683
|
+
destPoint: System.Drawing.Point,
|
|
684
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
685
|
+
callbackData: System.IntPtr,
|
|
686
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
687
|
+
): VoidResult;
|
|
688
|
+
enumerateMetafile(
|
|
689
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
690
|
+
destPoint: System.Drawing.Point,
|
|
691
|
+
srcRect: System.Drawing.Rectangle,
|
|
692
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
693
|
+
callback: Graphics_EnumerateMetafileProc
|
|
694
|
+
): VoidResult;
|
|
695
|
+
enumerateMetafile(
|
|
696
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
697
|
+
destPoint: System.Drawing.Point,
|
|
698
|
+
srcRect: System.Drawing.Rectangle,
|
|
699
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
700
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
701
|
+
callbackData: System.IntPtr
|
|
702
|
+
): VoidResult;
|
|
703
|
+
enumerateMetafile(
|
|
704
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
705
|
+
destPoint: System.Drawing.Point,
|
|
706
|
+
srcRect: System.Drawing.Rectangle,
|
|
707
|
+
unit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
708
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
709
|
+
callbackData: System.IntPtr,
|
|
710
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
711
|
+
): VoidResult;
|
|
712
|
+
enumerateMetafile(
|
|
713
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
714
|
+
destPoint: System.Drawing.PointF,
|
|
715
|
+
callback: Graphics_EnumerateMetafileProc
|
|
716
|
+
): VoidResult;
|
|
717
|
+
enumerateMetafile(
|
|
718
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
719
|
+
destPoint: System.Drawing.PointF,
|
|
720
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
721
|
+
callbackData: System.IntPtr
|
|
722
|
+
): VoidResult;
|
|
723
|
+
enumerateMetafile(
|
|
724
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
725
|
+
destPoint: System.Drawing.PointF,
|
|
726
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
727
|
+
callbackData: System.IntPtr,
|
|
728
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
729
|
+
): VoidResult;
|
|
730
|
+
enumerateMetafile(
|
|
731
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
732
|
+
destPoint: System.Drawing.PointF,
|
|
733
|
+
srcRect: System.Drawing.RectangleF,
|
|
734
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
735
|
+
callback: Graphics_EnumerateMetafileProc
|
|
736
|
+
): VoidResult;
|
|
737
|
+
enumerateMetafile(
|
|
738
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
739
|
+
destPoint: System.Drawing.PointF,
|
|
740
|
+
srcRect: System.Drawing.RectangleF,
|
|
741
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
742
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
743
|
+
callbackData: System.IntPtr
|
|
744
|
+
): VoidResult;
|
|
745
|
+
enumerateMetafile(
|
|
746
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
747
|
+
destPoint: System.Drawing.PointF,
|
|
748
|
+
srcRect: System.Drawing.RectangleF,
|
|
749
|
+
unit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
750
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
751
|
+
callbackData: System.IntPtr,
|
|
752
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
753
|
+
): VoidResult;
|
|
754
|
+
enumerateMetafile(
|
|
755
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
756
|
+
destPoints: HostArray<System.Drawing.Point>,
|
|
757
|
+
callback: Graphics_EnumerateMetafileProc
|
|
758
|
+
): VoidResult;
|
|
759
|
+
enumerateMetafile(
|
|
760
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
761
|
+
destPoints: HostArray<System.Drawing.Point>,
|
|
762
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
763
|
+
callbackData: System.IntPtr
|
|
764
|
+
): VoidResult;
|
|
765
|
+
enumerateMetafile(
|
|
766
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
767
|
+
destPoints: HostArray<System.Drawing.Point>,
|
|
768
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
769
|
+
callbackData: System.IntPtr,
|
|
770
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
771
|
+
): VoidResult;
|
|
772
|
+
enumerateMetafile(
|
|
773
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
774
|
+
destPoints: HostArray<System.Drawing.Point>,
|
|
775
|
+
srcRect: System.Drawing.Rectangle,
|
|
776
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
777
|
+
callback: Graphics_EnumerateMetafileProc
|
|
778
|
+
): VoidResult;
|
|
779
|
+
enumerateMetafile(
|
|
780
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
781
|
+
destPoints: HostArray<System.Drawing.Point>,
|
|
782
|
+
srcRect: System.Drawing.Rectangle,
|
|
783
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
784
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
785
|
+
callbackData: System.IntPtr
|
|
786
|
+
): VoidResult;
|
|
787
|
+
enumerateMetafile(
|
|
788
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
789
|
+
destPoints: HostArray<System.Drawing.Point>,
|
|
790
|
+
srcRect: System.Drawing.Rectangle,
|
|
791
|
+
unit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
792
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
793
|
+
callbackData: System.IntPtr,
|
|
794
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
795
|
+
): VoidResult;
|
|
796
|
+
enumerateMetafile(
|
|
797
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
798
|
+
destPoints: HostArray<System.Drawing.PointF>,
|
|
799
|
+
callback: Graphics_EnumerateMetafileProc
|
|
800
|
+
): VoidResult;
|
|
801
|
+
enumerateMetafile(
|
|
802
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
803
|
+
destPoints: HostArray<System.Drawing.PointF>,
|
|
804
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
805
|
+
callbackData: System.IntPtr
|
|
806
|
+
): VoidResult;
|
|
807
|
+
enumerateMetafile(
|
|
808
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
809
|
+
destPoints: HostArray<System.Drawing.PointF>,
|
|
810
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
811
|
+
callbackData: System.IntPtr,
|
|
812
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
813
|
+
): VoidResult;
|
|
814
|
+
enumerateMetafile(
|
|
815
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
816
|
+
destPoints: HostArray<System.Drawing.PointF>,
|
|
817
|
+
srcRect: System.Drawing.RectangleF,
|
|
818
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
819
|
+
callback: Graphics_EnumerateMetafileProc
|
|
820
|
+
): VoidResult;
|
|
821
|
+
enumerateMetafile(
|
|
822
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
823
|
+
destPoints: HostArray<System.Drawing.PointF>,
|
|
824
|
+
srcRect: System.Drawing.RectangleF,
|
|
825
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
826
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
827
|
+
callbackData: System.IntPtr
|
|
828
|
+
): VoidResult;
|
|
829
|
+
enumerateMetafile(
|
|
830
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
831
|
+
destPoints: HostArray<System.Drawing.PointF>,
|
|
832
|
+
srcRect: System.Drawing.RectangleF,
|
|
833
|
+
unit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
834
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
835
|
+
callbackData: System.IntPtr,
|
|
836
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
837
|
+
): VoidResult;
|
|
838
|
+
enumerateMetafile(
|
|
839
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
840
|
+
destRect: System.Drawing.Rectangle,
|
|
841
|
+
callback: Graphics_EnumerateMetafileProc
|
|
842
|
+
): VoidResult;
|
|
843
|
+
enumerateMetafile(
|
|
844
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
845
|
+
destRect: System.Drawing.Rectangle,
|
|
846
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
847
|
+
callbackData: System.IntPtr
|
|
848
|
+
): VoidResult;
|
|
849
|
+
enumerateMetafile(
|
|
850
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
851
|
+
destRect: System.Drawing.Rectangle,
|
|
852
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
853
|
+
callbackData: System.IntPtr,
|
|
854
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
855
|
+
): VoidResult;
|
|
856
|
+
enumerateMetafile(
|
|
857
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
858
|
+
destRect: System.Drawing.Rectangle,
|
|
859
|
+
srcRect: System.Drawing.Rectangle,
|
|
860
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
861
|
+
callback: Graphics_EnumerateMetafileProc
|
|
862
|
+
): VoidResult;
|
|
863
|
+
enumerateMetafile(
|
|
864
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
865
|
+
destRect: System.Drawing.Rectangle,
|
|
866
|
+
srcRect: System.Drawing.Rectangle,
|
|
867
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
868
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
869
|
+
callbackData: System.IntPtr
|
|
870
|
+
): VoidResult;
|
|
871
|
+
enumerateMetafile(
|
|
872
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
873
|
+
destRect: System.Drawing.Rectangle,
|
|
874
|
+
srcRect: System.Drawing.Rectangle,
|
|
875
|
+
unit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
876
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
877
|
+
callbackData: System.IntPtr,
|
|
878
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
879
|
+
): VoidResult;
|
|
880
|
+
enumerateMetafile(
|
|
881
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
882
|
+
destRect: System.Drawing.RectangleF,
|
|
883
|
+
callback: Graphics_EnumerateMetafileProc
|
|
884
|
+
): VoidResult;
|
|
885
|
+
enumerateMetafile(
|
|
886
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
887
|
+
destRect: System.Drawing.RectangleF,
|
|
888
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
889
|
+
callbackData: System.IntPtr
|
|
890
|
+
): VoidResult;
|
|
891
|
+
enumerateMetafile(
|
|
892
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
893
|
+
destRect: System.Drawing.RectangleF,
|
|
894
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
895
|
+
callbackData: System.IntPtr,
|
|
896
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
897
|
+
): VoidResult;
|
|
898
|
+
enumerateMetafile(
|
|
899
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
900
|
+
destRect: System.Drawing.RectangleF,
|
|
901
|
+
srcRect: System.Drawing.RectangleF,
|
|
902
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
903
|
+
callback: Graphics_EnumerateMetafileProc
|
|
904
|
+
): VoidResult;
|
|
905
|
+
enumerateMetafile(
|
|
906
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
907
|
+
destRect: System.Drawing.RectangleF,
|
|
908
|
+
srcRect: System.Drawing.RectangleF,
|
|
909
|
+
srcUnit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
910
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
911
|
+
callbackData: System.IntPtr
|
|
912
|
+
): VoidResult;
|
|
913
|
+
enumerateMetafile(
|
|
914
|
+
metafile: System.Drawing.Imaging.Metafile,
|
|
915
|
+
destRect: System.Drawing.RectangleF,
|
|
916
|
+
srcRect: System.Drawing.RectangleF,
|
|
917
|
+
unit: EnumInput<System.Drawing.GraphicsUnit>,
|
|
918
|
+
callback: Graphics_EnumerateMetafileProc,
|
|
919
|
+
callbackData: System.IntPtr,
|
|
920
|
+
imageAttr: System.Drawing.Imaging.ImageAttributes | null
|
|
921
|
+
): VoidResult;
|
|
922
|
+
excludeClip(rect: System.Drawing.Rectangle): VoidResult;
|
|
923
|
+
excludeClip(region: System.Drawing.Region): VoidResult;
|
|
924
|
+
fillClosedCurve(brush: System.Drawing.Brush, ...points: System.Drawing.PointF[]): VoidResult;
|
|
925
|
+
fillClosedCurve(brush: System.Drawing.Brush, ...points: System.Drawing.Point[]): VoidResult;
|
|
926
|
+
fillClosedCurve(brush: System.Drawing.Brush, points: HostArray<System.Drawing.Point>): VoidResult;
|
|
927
|
+
fillClosedCurve(
|
|
928
|
+
brush: System.Drawing.Brush,
|
|
929
|
+
points: HostArray<System.Drawing.Point>,
|
|
930
|
+
fillmode: EnumInput<System.Drawing.Drawing2D.FillMode>
|
|
931
|
+
): VoidResult;
|
|
932
|
+
fillClosedCurve(
|
|
933
|
+
brush: System.Drawing.Brush,
|
|
934
|
+
points: HostArray<System.Drawing.Point>,
|
|
935
|
+
fillmode: EnumInput<System.Drawing.Drawing2D.FillMode>,
|
|
936
|
+
tension: number | StrongNumeric<SingleHost>
|
|
937
|
+
): VoidResult;
|
|
938
|
+
fillClosedCurve(
|
|
939
|
+
brush: System.Drawing.Brush,
|
|
940
|
+
points: HostArray<System.Drawing.PointF>
|
|
941
|
+
): VoidResult;
|
|
942
|
+
fillClosedCurve(
|
|
943
|
+
brush: System.Drawing.Brush,
|
|
944
|
+
points: HostArray<System.Drawing.PointF>,
|
|
945
|
+
fillmode: EnumInput<System.Drawing.Drawing2D.FillMode>
|
|
946
|
+
): VoidResult;
|
|
947
|
+
fillClosedCurve(
|
|
948
|
+
brush: System.Drawing.Brush,
|
|
949
|
+
points: HostArray<System.Drawing.PointF>,
|
|
950
|
+
fillmode: EnumInput<System.Drawing.Drawing2D.FillMode>,
|
|
951
|
+
tension: number | StrongNumeric<SingleHost>
|
|
952
|
+
): VoidResult;
|
|
953
|
+
fillEllipse(brush: System.Drawing.Brush, rect: System.Drawing.Rectangle): VoidResult;
|
|
954
|
+
fillEllipse(brush: System.Drawing.Brush, rect: System.Drawing.RectangleF): VoidResult;
|
|
955
|
+
fillEllipse(
|
|
956
|
+
brush: System.Drawing.Brush,
|
|
957
|
+
x: number | StrongNumeric<Int32Host>,
|
|
958
|
+
y: number | StrongNumeric<Int32Host>,
|
|
959
|
+
width: number | StrongNumeric<Int32Host>,
|
|
960
|
+
height: number | StrongNumeric<Int32Host>
|
|
961
|
+
): VoidResult;
|
|
962
|
+
fillEllipse(
|
|
963
|
+
brush: System.Drawing.Brush,
|
|
964
|
+
x: number | StrongNumeric<SingleHost>,
|
|
965
|
+
y: number | StrongNumeric<SingleHost>,
|
|
966
|
+
width: number | StrongNumeric<SingleHost>,
|
|
967
|
+
height: number | StrongNumeric<SingleHost>
|
|
968
|
+
): VoidResult;
|
|
969
|
+
fillPath(brush: System.Drawing.Brush, path: System.Drawing.Drawing2D.GraphicsPath): VoidResult;
|
|
970
|
+
fillPie(
|
|
971
|
+
brush: System.Drawing.Brush,
|
|
972
|
+
rect: System.Drawing.Rectangle,
|
|
973
|
+
startAngle: number | StrongNumeric<SingleHost>,
|
|
974
|
+
sweepAngle: number | StrongNumeric<SingleHost>
|
|
975
|
+
): VoidResult;
|
|
976
|
+
fillPie(
|
|
977
|
+
brush: System.Drawing.Brush,
|
|
978
|
+
rect: System.Drawing.RectangleF,
|
|
979
|
+
startAngle: number | StrongNumeric<SingleHost>,
|
|
980
|
+
sweepAngle: number | StrongNumeric<SingleHost>
|
|
981
|
+
): VoidResult;
|
|
982
|
+
fillPie(
|
|
983
|
+
brush: System.Drawing.Brush,
|
|
984
|
+
x: number | StrongNumeric<Int32Host>,
|
|
985
|
+
y: number | StrongNumeric<Int32Host>,
|
|
986
|
+
width: number | StrongNumeric<Int32Host>,
|
|
987
|
+
height: number | StrongNumeric<Int32Host>,
|
|
988
|
+
startAngle: number | StrongNumeric<Int32Host>,
|
|
989
|
+
sweepAngle: number | StrongNumeric<Int32Host>
|
|
990
|
+
): VoidResult;
|
|
991
|
+
fillPie(
|
|
992
|
+
brush: System.Drawing.Brush,
|
|
993
|
+
x: number | StrongNumeric<SingleHost>,
|
|
994
|
+
y: number | StrongNumeric<SingleHost>,
|
|
995
|
+
width: number | StrongNumeric<SingleHost>,
|
|
996
|
+
height: number | StrongNumeric<SingleHost>,
|
|
997
|
+
startAngle: number | StrongNumeric<SingleHost>,
|
|
998
|
+
sweepAngle: number | StrongNumeric<SingleHost>
|
|
999
|
+
): VoidResult;
|
|
1000
|
+
fillPolygon(brush: System.Drawing.Brush, ...points: System.Drawing.PointF[]): VoidResult;
|
|
1001
|
+
fillPolygon(brush: System.Drawing.Brush, points: HostArray<System.Drawing.Point>): VoidResult;
|
|
1002
|
+
fillPolygon(
|
|
1003
|
+
brush: System.Drawing.Brush,
|
|
1004
|
+
points: HostArray<System.Drawing.Point>,
|
|
1005
|
+
fillMode: EnumInput<System.Drawing.Drawing2D.FillMode>
|
|
1006
|
+
): VoidResult;
|
|
1007
|
+
fillPolygon(brush: System.Drawing.Brush, points: HostArray<System.Drawing.PointF>): VoidResult;
|
|
1008
|
+
fillPolygon(
|
|
1009
|
+
brush: System.Drawing.Brush,
|
|
1010
|
+
points: HostArray<System.Drawing.PointF>,
|
|
1011
|
+
fillMode: EnumInput<System.Drawing.Drawing2D.FillMode>
|
|
1012
|
+
): VoidResult;
|
|
1013
|
+
fillRectangle(brush: System.Drawing.Brush, rect: System.Drawing.Rectangle): VoidResult;
|
|
1014
|
+
fillRectangle(brush: System.Drawing.Brush, rect: System.Drawing.RectangleF): VoidResult;
|
|
1015
|
+
fillRectangle(
|
|
1016
|
+
brush: System.Drawing.Brush,
|
|
1017
|
+
x: number | StrongNumeric<Int32Host>,
|
|
1018
|
+
y: number | StrongNumeric<Int32Host>,
|
|
1019
|
+
width: number | StrongNumeric<Int32Host>,
|
|
1020
|
+
height: number | StrongNumeric<Int32Host>
|
|
1021
|
+
): VoidResult;
|
|
1022
|
+
fillRectangle(
|
|
1023
|
+
brush: System.Drawing.Brush,
|
|
1024
|
+
x: number | StrongNumeric<SingleHost>,
|
|
1025
|
+
y: number | StrongNumeric<SingleHost>,
|
|
1026
|
+
width: number | StrongNumeric<SingleHost>,
|
|
1027
|
+
height: number | StrongNumeric<SingleHost>
|
|
1028
|
+
): VoidResult;
|
|
1029
|
+
fillRectangles(brush: System.Drawing.Brush, ...rects: System.Drawing.RectangleF[]): VoidResult;
|
|
1030
|
+
fillRectangles(brush: System.Drawing.Brush, ...rects: System.Drawing.Rectangle[]): VoidResult;
|
|
1031
|
+
fillRectangles(
|
|
1032
|
+
brush: System.Drawing.Brush,
|
|
1033
|
+
rects: HostArray<System.Drawing.Rectangle>
|
|
1034
|
+
): VoidResult;
|
|
1035
|
+
fillRectangles(
|
|
1036
|
+
brush: System.Drawing.Brush,
|
|
1037
|
+
rects: HostArray<System.Drawing.RectangleF>
|
|
1038
|
+
): VoidResult;
|
|
1039
|
+
fillRegion(brush: System.Drawing.Brush, region: System.Drawing.Region): VoidResult;
|
|
1040
|
+
flush(): VoidResult;
|
|
1041
|
+
flush(intention: EnumInput<System.Drawing.Drawing2D.FlushIntention>): VoidResult;
|
|
1042
|
+
getContextInfo(): unknown;
|
|
1043
|
+
getContextInfo(offset: HostVariableOut<System.Drawing.PointF>): VoidResult;
|
|
1044
|
+
getContextInfo(
|
|
1045
|
+
offset: HostVariableOut<System.Drawing.PointF>,
|
|
1046
|
+
clip: HostVariableOut<System.Drawing.Region>
|
|
1047
|
+
): VoidResult;
|
|
1048
|
+
getHdc(): System.IntPtr;
|
|
1049
|
+
getNearestColor(color: System.Drawing.Color): System.Drawing.Color;
|
|
1050
|
+
interpolationMode: System.Drawing.Drawing2D.InterpolationMode;
|
|
1051
|
+
intersectClip(rect: System.Drawing.Rectangle): VoidResult;
|
|
1052
|
+
intersectClip(rect: System.Drawing.RectangleF): VoidResult;
|
|
1053
|
+
intersectClip(region: System.Drawing.Region): VoidResult;
|
|
1054
|
+
isVisible(point: System.Drawing.Point): boolean;
|
|
1055
|
+
isVisible(point: System.Drawing.PointF): boolean;
|
|
1056
|
+
isVisible(rect: System.Drawing.Rectangle): boolean;
|
|
1057
|
+
isVisible(rect: System.Drawing.RectangleF): boolean;
|
|
1058
|
+
isVisible(x: number | StrongNumeric<Int32Host>, y: number | StrongNumeric<Int32Host>): boolean;
|
|
1059
|
+
isVisible(
|
|
1060
|
+
x: number | StrongNumeric<Int32Host>,
|
|
1061
|
+
y: number | StrongNumeric<Int32Host>,
|
|
1062
|
+
width: number | StrongNumeric<Int32Host>,
|
|
1063
|
+
height: number | StrongNumeric<Int32Host>
|
|
1064
|
+
): boolean;
|
|
1065
|
+
isVisible(x: number | StrongNumeric<SingleHost>, y: number | StrongNumeric<SingleHost>): boolean;
|
|
1066
|
+
isVisible(
|
|
1067
|
+
x: number | StrongNumeric<SingleHost>,
|
|
1068
|
+
y: number | StrongNumeric<SingleHost>,
|
|
1069
|
+
width: number | StrongNumeric<SingleHost>,
|
|
1070
|
+
height: number | StrongNumeric<SingleHost>
|
|
1071
|
+
): boolean;
|
|
1072
|
+
measureCharacterRanges(
|
|
1073
|
+
text: string | null,
|
|
1074
|
+
font: System.Drawing.Font,
|
|
1075
|
+
layoutRect: System.Drawing.RectangleF,
|
|
1076
|
+
stringFormat: System.Drawing.StringFormat | null
|
|
1077
|
+
): HostArray<System.Drawing.Region>;
|
|
1078
|
+
measureString(text: string | null, font: System.Drawing.Font): System.Drawing.SizeF;
|
|
1079
|
+
measureString(
|
|
1080
|
+
text: string | null,
|
|
1081
|
+
font: System.Drawing.Font,
|
|
1082
|
+
layoutArea: System.Drawing.SizeF
|
|
1083
|
+
): System.Drawing.SizeF;
|
|
1084
|
+
measureString(
|
|
1085
|
+
text: string | null,
|
|
1086
|
+
font: System.Drawing.Font,
|
|
1087
|
+
layoutArea: System.Drawing.SizeF,
|
|
1088
|
+
stringFormat: System.Drawing.StringFormat | null
|
|
1089
|
+
): System.Drawing.SizeF;
|
|
1090
|
+
measureString(
|
|
1091
|
+
text: string | null,
|
|
1092
|
+
font: System.Drawing.Font,
|
|
1093
|
+
layoutArea: System.Drawing.SizeF,
|
|
1094
|
+
stringFormat: System.Drawing.StringFormat | null,
|
|
1095
|
+
charactersFitted: HostVariableOut<number>,
|
|
1096
|
+
linesFilled: HostVariableOut<number>
|
|
1097
|
+
): System.Drawing.SizeF;
|
|
1098
|
+
measureString(
|
|
1099
|
+
text: string | null,
|
|
1100
|
+
font: System.Drawing.Font,
|
|
1101
|
+
origin: System.Drawing.PointF,
|
|
1102
|
+
stringFormat: System.Drawing.StringFormat | null
|
|
1103
|
+
): System.Drawing.SizeF;
|
|
1104
|
+
measureString(
|
|
1105
|
+
text: string | null,
|
|
1106
|
+
font: System.Drawing.Font,
|
|
1107
|
+
width: number | StrongNumeric<Int32Host>
|
|
1108
|
+
): System.Drawing.SizeF;
|
|
1109
|
+
measureString(
|
|
1110
|
+
text: string | null,
|
|
1111
|
+
font: System.Drawing.Font,
|
|
1112
|
+
width: number | StrongNumeric<Int32Host>,
|
|
1113
|
+
format: System.Drawing.StringFormat | null
|
|
1114
|
+
): System.Drawing.SizeF;
|
|
1115
|
+
multiplyTransform(matrix: System.Drawing.Drawing2D.Matrix): VoidResult;
|
|
1116
|
+
multiplyTransform(
|
|
1117
|
+
matrix: System.Drawing.Drawing2D.Matrix,
|
|
1118
|
+
order: EnumInput<System.Drawing.Drawing2D.MatrixOrder>
|
|
1119
|
+
): VoidResult;
|
|
1120
|
+
pageScale: number;
|
|
1121
|
+
pageUnit: System.Drawing.GraphicsUnit;
|
|
1122
|
+
pixelOffsetMode: System.Drawing.Drawing2D.PixelOffsetMode;
|
|
1123
|
+
readonly clipBounds: System.Drawing.RectangleF;
|
|
1124
|
+
readonly dpiX: number;
|
|
1125
|
+
readonly dpiY: number;
|
|
1126
|
+
readonly isClipEmpty: boolean;
|
|
1127
|
+
readonly isVisibleClipEmpty: boolean;
|
|
1128
|
+
readonly visibleClipBounds: System.Drawing.RectangleF;
|
|
1129
|
+
releaseHdc(): VoidResult;
|
|
1130
|
+
releaseHdc(hdc: System.IntPtr): VoidResult;
|
|
1131
|
+
releaseHdcInternal(hdc: System.IntPtr): VoidResult;
|
|
1132
|
+
renderingOrigin: System.Drawing.Point;
|
|
1133
|
+
resetClip(): VoidResult;
|
|
1134
|
+
resetTransform(): VoidResult;
|
|
1135
|
+
restore(gstate: System.Drawing.Drawing2D.GraphicsState): VoidResult;
|
|
1136
|
+
rotateTransform(angle: number | StrongNumeric<SingleHost>): VoidResult;
|
|
1137
|
+
rotateTransform(
|
|
1138
|
+
angle: number | StrongNumeric<SingleHost>,
|
|
1139
|
+
order: EnumInput<System.Drawing.Drawing2D.MatrixOrder>
|
|
1140
|
+
): VoidResult;
|
|
1141
|
+
save(): System.Drawing.Drawing2D.GraphicsState;
|
|
1142
|
+
scaleTransform(
|
|
1143
|
+
sx: number | StrongNumeric<SingleHost>,
|
|
1144
|
+
sy: number | StrongNumeric<SingleHost>
|
|
1145
|
+
): VoidResult;
|
|
1146
|
+
scaleTransform(
|
|
1147
|
+
sx: number | StrongNumeric<SingleHost>,
|
|
1148
|
+
sy: number | StrongNumeric<SingleHost>,
|
|
1149
|
+
order: EnumInput<System.Drawing.Drawing2D.MatrixOrder>
|
|
1150
|
+
): VoidResult;
|
|
1151
|
+
setClip(g: System.Drawing.Graphics): VoidResult;
|
|
1152
|
+
setClip(
|
|
1153
|
+
g: System.Drawing.Graphics,
|
|
1154
|
+
combineMode: EnumInput<System.Drawing.Drawing2D.CombineMode>
|
|
1155
|
+
): VoidResult;
|
|
1156
|
+
setClip(path: System.Drawing.Drawing2D.GraphicsPath): VoidResult;
|
|
1157
|
+
setClip(
|
|
1158
|
+
path: System.Drawing.Drawing2D.GraphicsPath,
|
|
1159
|
+
combineMode: EnumInput<System.Drawing.Drawing2D.CombineMode>
|
|
1160
|
+
): VoidResult;
|
|
1161
|
+
setClip(rect: System.Drawing.Rectangle): VoidResult;
|
|
1162
|
+
setClip(
|
|
1163
|
+
rect: System.Drawing.Rectangle,
|
|
1164
|
+
combineMode: EnumInput<System.Drawing.Drawing2D.CombineMode>
|
|
1165
|
+
): VoidResult;
|
|
1166
|
+
setClip(rect: System.Drawing.RectangleF): VoidResult;
|
|
1167
|
+
setClip(
|
|
1168
|
+
rect: System.Drawing.RectangleF,
|
|
1169
|
+
combineMode: EnumInput<System.Drawing.Drawing2D.CombineMode>
|
|
1170
|
+
): VoidResult;
|
|
1171
|
+
setClip(
|
|
1172
|
+
region: System.Drawing.Region,
|
|
1173
|
+
combineMode: EnumInput<System.Drawing.Drawing2D.CombineMode>
|
|
1174
|
+
): VoidResult;
|
|
1175
|
+
smoothingMode: System.Drawing.Drawing2D.SmoothingMode;
|
|
1176
|
+
textContrast: number;
|
|
1177
|
+
textRenderingHint: System.Drawing.Text.TextRenderingHint;
|
|
1178
|
+
transform: System.Drawing.Drawing2D.Matrix;
|
|
1179
|
+
transformElements: System.Numerics.Matrix3x2;
|
|
1180
|
+
transformPoints(
|
|
1181
|
+
destSpace: EnumInput<System.Drawing.Drawing2D.CoordinateSpace>,
|
|
1182
|
+
srcSpace: EnumInput<System.Drawing.Drawing2D.CoordinateSpace>,
|
|
1183
|
+
...pts: System.Drawing.PointF[]
|
|
1184
|
+
): VoidResult;
|
|
1185
|
+
transformPoints(
|
|
1186
|
+
destSpace: EnumInput<System.Drawing.Drawing2D.CoordinateSpace>,
|
|
1187
|
+
srcSpace: EnumInput<System.Drawing.Drawing2D.CoordinateSpace>,
|
|
1188
|
+
...pts: System.Drawing.Point[]
|
|
1189
|
+
): VoidResult;
|
|
1190
|
+
transformPoints(
|
|
1191
|
+
destSpace: EnumInput<System.Drawing.Drawing2D.CoordinateSpace>,
|
|
1192
|
+
srcSpace: EnumInput<System.Drawing.Drawing2D.CoordinateSpace>,
|
|
1193
|
+
pts: HostArray<System.Drawing.Point>
|
|
1194
|
+
): VoidResult;
|
|
1195
|
+
transformPoints(
|
|
1196
|
+
destSpace: EnumInput<System.Drawing.Drawing2D.CoordinateSpace>,
|
|
1197
|
+
srcSpace: EnumInput<System.Drawing.Drawing2D.CoordinateSpace>,
|
|
1198
|
+
pts: HostArray<System.Drawing.PointF>
|
|
1199
|
+
): VoidResult;
|
|
1200
|
+
translateClip(
|
|
1201
|
+
dx: number | StrongNumeric<Int32Host>,
|
|
1202
|
+
dy: number | StrongNumeric<Int32Host>
|
|
1203
|
+
): VoidResult;
|
|
1204
|
+
translateClip(
|
|
1205
|
+
dx: number | StrongNumeric<SingleHost>,
|
|
1206
|
+
dy: number | StrongNumeric<SingleHost>
|
|
1207
|
+
): VoidResult;
|
|
1208
|
+
translateTransform(
|
|
1209
|
+
dx: number | StrongNumeric<SingleHost>,
|
|
1210
|
+
dy: number | StrongNumeric<SingleHost>
|
|
1211
|
+
): VoidResult;
|
|
1212
|
+
translateTransform(
|
|
1213
|
+
dx: number | StrongNumeric<SingleHost>,
|
|
1214
|
+
dy: number | StrongNumeric<SingleHost>,
|
|
1215
|
+
order: EnumInput<System.Drawing.Drawing2D.MatrixOrder>
|
|
1216
|
+
): VoidResult;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
declare const delegateGraphics_DrawImageAbortBrand: unique symbol;
|
|
1220
|
+
export interface Graphics_DrawImageAbort extends HostDelegate {
|
|
1221
|
+
readonly [delegateGraphics_DrawImageAbortBrand]: true;
|
|
1222
|
+
(callbackdata: System.IntPtr): boolean;
|
|
1223
|
+
invoke(callbackdata: System.IntPtr): boolean;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
export interface Graphics_DrawImageAbortHostType extends HostType<
|
|
1227
|
+
Graphics_DrawImageAbort,
|
|
1228
|
+
ReferenceTypeTrait
|
|
1229
|
+
> {
|
|
1230
|
+
new (object: unknown, method: System.IntPtr): Graphics_DrawImageAbort;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
declare global {
|
|
1234
|
+
namespace System.Drawing.Graphics {
|
|
1235
|
+
type DrawImageAbort = import("./Graphics").Graphics_DrawImageAbort;
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
declare const delegateGraphics_EnumerateMetafileProcBrand: unique symbol;
|
|
1240
|
+
export interface Graphics_EnumerateMetafileProc extends HostDelegate {
|
|
1241
|
+
readonly [delegateGraphics_EnumerateMetafileProcBrand]: true;
|
|
1242
|
+
(
|
|
1243
|
+
recordType: EnumInput<System.Drawing.Imaging.EmfPlusRecordType>,
|
|
1244
|
+
flags: number | StrongNumeric<Int32Host>,
|
|
1245
|
+
dataSize: number | StrongNumeric<Int32Host>,
|
|
1246
|
+
data: System.IntPtr,
|
|
1247
|
+
callbackData: System.Drawing.Imaging.PlayRecordCallback | null
|
|
1248
|
+
): boolean;
|
|
1249
|
+
invoke(
|
|
1250
|
+
recordType: EnumInput<System.Drawing.Imaging.EmfPlusRecordType>,
|
|
1251
|
+
flags: number | StrongNumeric<Int32Host>,
|
|
1252
|
+
dataSize: number | StrongNumeric<Int32Host>,
|
|
1253
|
+
data: System.IntPtr,
|
|
1254
|
+
callbackData: System.Drawing.Imaging.PlayRecordCallback | null
|
|
1255
|
+
): boolean;
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
export interface Graphics_EnumerateMetafileProcHostType extends HostType<
|
|
1259
|
+
Graphics_EnumerateMetafileProc,
|
|
1260
|
+
ReferenceTypeTrait
|
|
1261
|
+
> {
|
|
1262
|
+
new (object: unknown, method: System.IntPtr): Graphics_EnumerateMetafileProc;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
declare global {
|
|
1266
|
+
namespace System.Drawing.Graphics {
|
|
1267
|
+
type EnumerateMetafileProc = import("./Graphics").Graphics_EnumerateMetafileProc;
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
declare global {
|
|
1272
|
+
namespace System.Drawing {
|
|
1273
|
+
type Graphics = import("./Graphics").Graphics;
|
|
1274
|
+
}
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
export interface GraphicsHostType extends HostType<Graphics, ReferenceTypeTrait> {
|
|
1278
|
+
fromHdc(hdc: System.IntPtr): System.Drawing.Graphics;
|
|
1279
|
+
fromHdcInternal(hdc: System.IntPtr): System.Drawing.Graphics;
|
|
1280
|
+
fromHdc(hdc: System.IntPtr, hdevice: System.IntPtr): System.Drawing.Graphics;
|
|
1281
|
+
fromHwnd(hwnd: System.IntPtr): System.Drawing.Graphics;
|
|
1282
|
+
fromHwndInternal(hwnd: System.IntPtr): System.Drawing.Graphics;
|
|
1283
|
+
fromImage(image: System.Drawing.Image): System.Drawing.Graphics;
|
|
1284
|
+
getHalftonePalette(): System.IntPtr;
|
|
1285
|
+
readonly DrawImageAbort: Graphics_DrawImageAbortHostType;
|
|
1286
|
+
readonly EnumerateMetafileProc: Graphics_EnumerateMetafileProcHostType;
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
export {};
|